blob: 1fc187f581738dd6488f1e06e328c23509902f8a [file] [log] [blame]
commit-bot@chromium.orgecaa59d2013-06-04 21:13:11 +00001<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.example"
4 android:versionCode="1"
5 android:versionName="1.0">
6 <uses-sdk android:minSdkVersion="15" />
7 <application android:label="@string/app_name" android:icon="@drawable/ic_launcher" android:debuggable="true">
8 <activity android:name="HelloSkiaActivity"
9 android:label="@string/app_name"
10 android:theme="@android:style/Theme.Black.NoTitleBar">
11 <intent-filter>
12 <action android:name="android.intent.action.MAIN" />
13 <category android:name="android.intent.category.LAUNCHER" />
14 </intent-filter>
15 </activity>
16 </application>
17</manifest>