| Index: apk/AndroidManifest.xml
|
| diff --git a/apk/AndroidManifest.xml b/apk/AndroidManifest.xml
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..023fe6f858dd91dbf1b762c1fb4b6cc85c26721a
|
| --- /dev/null
|
| +++ b/apk/AndroidManifest.xml
|
| @@ -0,0 +1,23 @@
|
| +<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
| + package="org.chromium.simple"
|
| + android:versionCode="1"
|
| + android:versionName="1.0" >
|
| + <uses-sdk
|
| + android:minSdkVersion="16"
|
| + android:targetSdkVersion="21" />
|
| + <application
|
| + android:name="org.chromium.simple.MainApplication"
|
| + android:icon="@mipmap/app_icon"
|
| + android:label="@string/app_name"
|
| + android:theme="@style/SimpleTheme" >
|
| + <activity
|
| + android:name=".MainActivity"
|
| + android:label="@string/title_activity_my" >
|
| + <intent-filter>
|
| + <action android:name="android.intent.action.MAIN" />
|
| + <category android:name="android.intent.category.LAUNCHER"/>
|
| + </intent-filter>
|
| + </activity>
|
| + </application>
|
| + <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
| +</manifest>
|
|
|