Add an icon for SkyDemo (required by the play store) This doesn't actually wire the icon into the apk building. I will do that in a separate step from my linux machine. It will require a couple lines edit in BUILD.gn R=abarth@chromium.org Review URL: https://codereview.chromium.org/1013323002
diff --git a/sky/apk/demo/AndroidManifest.xml b/sky/apk/demo/AndroidManifest.xml index 8f13573..9118fe5 100644 --- a/sky/apk/demo/AndroidManifest.xml +++ b/sky/apk/demo/AndroidManifest.xml
@@ -10,7 +10,7 @@ <uses-permission android:name="android.permission.INTERNET"/> <uses-feature android:name="android.hardware.sensor.accelerometer" android:required="true" /> - <application android:name="SkyDemoApplication" android:label="Sky"> + <application android:icon="@drawable/ic_launcher" android:name="SkyDemoApplication" android:label="Sky"> <activity android:name="SkyDemoActivity" android:launchMode="singleTask" android:theme="@android:style/Theme.Holo.Light.NoActionBar"
diff --git a/sky/apk/demo/README.md b/sky/apk/demo/README.md new file mode 100644 index 0000000..0e6adf9 --- /dev/null +++ b/sky/apk/demo/README.md
@@ -0,0 +1,6 @@ +Icon image comes from: +https://openclipart.org/detail/30073/tango%20weather%20few%20clouds +and is public domain. + +Icon resources were generated using: +http://romannurik.github.io/AndroidAssetStudio/icons-launcher.html
diff --git a/sky/apk/demo/res/mipmap-hdpi/ic_launcher.png b/sky/apk/demo/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..b34d811 --- /dev/null +++ b/sky/apk/demo/res/mipmap-hdpi/ic_launcher.png Binary files differ
diff --git a/sky/apk/demo/res/mipmap-mdpi/ic_launcher.png b/sky/apk/demo/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..7c42388 --- /dev/null +++ b/sky/apk/demo/res/mipmap-mdpi/ic_launcher.png Binary files differ
diff --git a/sky/apk/demo/res/mipmap-xhdpi/ic_launcher.png b/sky/apk/demo/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..d57d68c --- /dev/null +++ b/sky/apk/demo/res/mipmap-xhdpi/ic_launcher.png Binary files differ
diff --git a/sky/apk/demo/res/mipmap-xxhdpi/ic_launcher.png b/sky/apk/demo/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..ba3f800 --- /dev/null +++ b/sky/apk/demo/res/mipmap-xxhdpi/ic_launcher.png Binary files differ
diff --git a/sky/apk/demo/res/mipmap-xxxhdpi/ic_launcher.png b/sky/apk/demo/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..8c4b368 --- /dev/null +++ b/sky/apk/demo/res/mipmap-xxxhdpi/ic_launcher.png Binary files differ