4
1
mirror of https://github.com/QuasarApp/Snake.git synced 2025-05-03 13:09:43 +00:00

fix icons

This commit is contained in:
Andrei Yankovich 2021-07-03 18:20:11 +03:00
parent 6e9e8ebc4f
commit 6189aa91fc
15 changed files with 20 additions and 2 deletions
src/Client/android

@ -1,5 +1,5 @@
<?xml version="1.0"?>
<manifest package="qa.core.snake" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="0.0.0.0" android:versionCode="1" android:installLocation="auto">
<manifest package="qa.core.crawl" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="0.0.0.0" android:versionCode="1" android:installLocation="auto">
<!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
Remove the comment if you do not require these default permissions. -->
<!-- %%INSERT_PERMISSIONS -->
@ -12,7 +12,7 @@
<application android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="-- %%INSERT_APP_NAME%% --" android:extractNativeLibs="true" android:icon="@drawable/icon">
<!-- Sample AdMob app ID: ca-app-pub-5799112356811682~1226170116 -->
<meta-data android:name="com.google.android.gms.ads.APPLICATION_ID" android:value="ca-app-pub-5799112356811682~1226170116"/>
<activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation|mcc|mnc|density" android:name="com.quasarapp.androidtools.MainActivity" android:label="-- %%INSERT_APP_NAME%% --" android:screenOrientation="landscape" android:launchMode="singleTop">
<activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation|mcc|mnc|density" android:name="com.quasarapp.androidtools.MainActivity" android:label="-- %%INSERT_APP_NAME%% --" android:screenOrientation="landscape" android:launchMode="singleTop" android:theme="@style/splashScreenTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
@ -70,6 +70,7 @@
-->
<meta-data android:name="android.app.extract_android_style" android:value="default"/>
<!-- extract android style -->
<meta-data android:name="android.app.splash_screen_drawable" android:resource="@drawable/splashscreen"/>
</activity>
<!-- For adding service(s) please check: https://wiki.qt.io/AndroidServices -->
</application>

Binary file not shown.

Before

(image error) Size: 3.1 KiB

After

(image error) Size: 6.7 KiB

Binary file not shown.

After

(image error) Size: 63 KiB

Binary file not shown.

Before

(image error) Size: 1.1 KiB

After

(image error) Size: 2.2 KiB

Binary file not shown.

After

(image error) Size: 19 KiB

Binary file not shown.

Before

(image error) Size: 1.9 KiB

After

(image error) Size: 3.8 KiB

Binary file not shown.

After

(image error) Size: 32 KiB

Binary file not shown.

Before

(image error) Size: 4.8 KiB

After

(image error) Size: 10 KiB

Binary file not shown.

After

(image error) Size: 100 KiB

Binary file not shown.

Before

(image error) Size: 8.7 KiB

After

(image error) Size: 19 KiB

Binary file not shown.

After

(image error) Size: 221 KiB

Binary file not shown.

Before

(image error) Size: 13 KiB

After

(image error) Size: 30 KiB

Binary file not shown.

After

(image error) Size: 370 KiB

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="#ffffff"/>
</shape>
</item>
<item>
<bitmap android:src="@drawable/logo" android:gravity="center"/>
</item>
</layer-list>

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<resources>
<style name="splashScreenTheme">
<item name="android:windowBackground">@drawable/splashscreen</item>
</style>
</resources>