Update xml colors

This commit is contained in:
vishnukvmd
2025-03-10 20:53:46 +05:30
parent fe9c236b71
commit 701676beeb
4 changed files with 5 additions and 3 deletions

View File

@@ -3,7 +3,7 @@
package="io.ente.photos">
<application android:name="${applicationName}"
android:label="@string/app_name"
android:icon="@mipmap/icon_light"
android:icon="@mipmap/icon_green"
android:usesCleartextTraffic="true"
android:requestLegacyExternalStorage="true"
android:allowBackup="false"

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<background android:drawable="@color/ic_launcher_background_dark"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<background android:drawable="@color/ic_launcher_background_light"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon>

View File

@@ -2,4 +2,6 @@
<resources>
<color name="splash_color">#000000</color>
<color name="ic_launcher_background">#08C225</color>
<color name="ic_launcher_background_light">#ffffff</color>
<color name="ic_launcher_background_dark">#000000</color>
</resources>