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

Unified Diff: sky/sdk/example/game/apk/AndroidManifest.xml

Issue 1225103009: Fix Asteroids game to paint again and give it an icon. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 5 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: sky/sdk/example/game/apk/AndroidManifest.xml
diff --git a/sky/sdk/example/game/apk/AndroidManifest.xml b/sky/sdk/example/game/apk/AndroidManifest.xml
index 6487fbf8aa7dde66281eac26ba267c8fa19edf7e..5514d953c20569a0418582df48a20ef267ff6beb 100644
--- a/sky/sdk/example/game/apk/AndroidManifest.xml
+++ b/sky/sdk/example/game/apk/AndroidManifest.xml
@@ -9,10 +9,10 @@
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" />
<uses-permission android:name="android.permission.INTERNET"/>
- <application android:name="org.domokit.sky.shell.SkyApplication" android:label="Asteroids">
+ <application android:icon="@mipmap/ic_launcher" android:name="org.domokit.sky.shell.SkyApplication" android:label="Asteroids">
<activity android:name="org.domokit.sky.shell.SkyActivity"
android:launchMode="singleTask"
- android:theme="@android:style/Theme.Holo.Light.NoActionBar"
+ android:theme="@android:style/Theme.Black.NoTitleBar"
abarth-chromium 2015/07/10 20:24:54 We should use this in all the AndroidManifests.xml
android:configChanges="orientation|keyboardHidden|keyboard|screenSize"
android:hardwareAccelerated="true">
<intent-filter>

Powered by Google App Engine
This is Rietveld 408576698