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

Side by Side Diff: platform_tools/android/apps/viewer/src/main/AndroidManifest.xml

Issue 1952323004: Initial commit of our new Android app to demo Skia. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Style Created 4 years, 7 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
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- BEGIN_INCLUDE(manifest) --> 2 <!-- BEGIN_INCLUDE(manifest) -->
3 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
4 package="org.skia.viewer" 4 package="org.skia.viewer"
5 android:versionCode="1" 5 android:versionCode="1"
6 android:versionName="1.0"> 6 android:versionName="1.0">
7 7
8 <application 8 <application
9 android:allowBackup="false" 9 android:allowBackup="false"
10 android:theme="@style/Theme.AppCompat.Light"
djsollen 2016/05/06 18:45:26 I think you can use a standard theme like @android
liyuqian 2016/05/06 20:42:30 Done.
11 android:name=".ViewerApplication"
10 android:label="Viewer"> 12 android:label="Viewer">
11 13
12 <activity android:name=".ViewerActivity" 14 <activity android:name=".ViewerActivity"
13 android:label="Viewer" 15 android:label="Viewer"
14 android:screenOrientation="portrait" 16 android:screenOrientation="portrait"
15 android:configChanges="orientation|keyboardHidden"> 17 android:configChanges="orientation|keyboardHidden">
16 <meta-data android:name="android.app.lib_name" 18 <meta-data android:name="android.app.lib_name"
17 android:value="viewer" /> 19 android:value="viewer" />
20 </activity>
21 <activity android:name=".MainActivity">
18 <intent-filter> 22 <intent-filter>
19 <action android:name="android.intent.action.MAIN" /> 23 <action android:name="android.intent.action.MAIN" />
20 <category android:name="android.intent.category.LAUNCHER" /> 24 <category android:name="android.intent.category.LAUNCHER" />
21 </intent-filter> 25 </intent-filter>
22 </activity> 26 </activity>
23 </application> 27 </application>
24 28
25 </manifest> 29 </manifest>
26 <!-- END_INCLUDE(manifest) --> 30 <!-- END_INCLUDE(manifest) -->
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698