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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « BUILD.gn ('k') | apk/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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>
OLDNEW
« 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