Merge remote-tracking branch 'origin/adaptive-icon' into landing-silo
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0"?>
|
||||
<manifest package="io.guh.nymeaapp" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.0" android:versionCode="1" android:installLocation="auto">
|
||||
|
||||
<application android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="nymea:app" android:icon="@drawable/icon">
|
||||
<application android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="nymea:app" android:icon="@drawable/icon" android:roundIcon="@drawable/round_icon">
|
||||
<activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation" android:name="io.guh.nymeaapp.NymeaAppActivity" android:label="nymea:app" android:screenOrientation="unspecified" android:launchMode="singleTop">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN"/>
|
||||
|
||||
@ -1,9 +0,0 @@
|
||||
## This file is automatically generated by QtCreator.
|
||||
#
|
||||
# This file must *NOT* be checked into Version Control Systems,
|
||||
# as it contains information specific to your local configuration.
|
||||
|
||||
androidBuildToolsVersion=26.0.1
|
||||
androidCompileSdkVersion=26
|
||||
buildDir=.build
|
||||
qt5AndroidDir=/home/micha/Develop/Qt/5.11.0/android_armv7/src/android/java
|
||||
5
packaging/android/res/drawable-anydpi-v26/icon.xml
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<background android:drawable="@color/icon_background"/>
|
||||
<foreground android:drawable="@drawable/icon_foreground"/>
|
||||
</adaptive-icon>
|
||||
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 31 KiB |
BIN
packaging/android/res/drawable-hdpi/round_icon.png
Normal file
|
After Width: | Height: | Size: 35 KiB |
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 6.0 KiB |
BIN
packaging/android/res/drawable-ldpi/round_icon.png
Normal file
|
After Width: | Height: | Size: 6.9 KiB |
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 13 KiB |
BIN
packaging/android/res/drawable-mdpi/icon_foreground.png
Normal file
|
After Width: | Height: | Size: 8.8 KiB |
BIN
packaging/android/res/drawable-mdpi/round_icon.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
4
packaging/android/res/values/colors.xml
Normal file
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="icon_background">#ffffff</color>
|
||||
</resources>
|
||||