OLD | NEW |
(Empty) | |
| 1 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 package="org.chromium.simple" |
| 3 android:versionCode="1" |
| 4 android:versionName="1.0" > |
| 5 <uses-sdk |
| 6 android:minSdkVersion="16" |
| 7 android:targetSdkVersion="21" /> |
| 8 <application |
| 9 android:name="org.chromium.simple.MainApplication" |
| 10 android:icon="@mipmap/app_icon" |
| 11 android:label="@string/app_name" |
| 12 android:theme="@style/SimpleTheme" > |
| 13 <activity |
| 14 android:name=".MainActivity" |
| 15 android:label="@string/title_activity_my" > |
| 16 <intent-filter> |
| 17 <action android:name="android.intent.action.MAIN" /> |
| 18 <category android:name="android.intent.category.LAUNCHER"/> |
| 19 </intent-filter> |
| 20 </activity> |
| 21 </application> |
| 22 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> |
| 23 </manifest> |
OLD | NEW |