Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2688)

Unified Diff: apk/AndroidManifest.xml

Issue 949803002: Deconstructed APK prototyping Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « BUILD.gn ('k') | apk/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « BUILD.gn ('k') | apk/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698