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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: platform_tools/android/apps/viewer/src/main/AndroidManifest.xml
diff --git a/platform_tools/android/apps/viewer/src/main/AndroidManifest.xml b/platform_tools/android/apps/viewer/src/main/AndroidManifest.xml
index 2ed88e1da65447bdf4bc390d24c196e09ede204c..6c42901a8f8cd2ce5332f5bbfe3c0c4072ed4e47 100644
--- a/platform_tools/android/apps/viewer/src/main/AndroidManifest.xml
+++ b/platform_tools/android/apps/viewer/src/main/AndroidManifest.xml
@@ -7,6 +7,8 @@
<application
android:allowBackup="false"
+ 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.
+ android:name=".ViewerApplication"
android:label="Viewer">
<activity android:name=".ViewerActivity"
@@ -15,6 +17,8 @@
android:configChanges="orientation|keyboardHidden">
<meta-data android:name="android.app.lib_name"
android:value="viewer" />
+ </activity>
+ <activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />

Powered by Google App Engine
This is Rietveld 408576698