From 28bc73163bf87f3d433dbe3be1cbf2f48ed88ffc Mon Sep 17 00:00:00 2001 From: Arne Schwabe Date: Sun, 4 Sep 2022 04:22:53 +0200 Subject: Redesign logo and add adaptive icons --- main/src/main/AndroidManifest.xml | 1 + .../main/res/drawable/ic_launcher3_foreground.xml | 21 ++++ main/src/main/res/drawable/ic_logo_bunt.xml | 21 ++++ main/src/main/res/drawable/ic_logo_sw.xml | 21 ++++ .../src/main/res/mipmap-anydpi-v26/ic_launcher.xml | 7 ++ .../res/mipmap-anydpi-v26/ic_launcher_round.xml | 7 ++ main/src/main/res/mipmap-hdpi/ic_launcher.png | Bin 5284 -> 1823 bytes .../src/main/res/mipmap-hdpi/ic_launcher_round.png | Bin 0 -> 3876 bytes main/src/main/res/mipmap-mdpi/ic_launcher.png | Bin 2994 -> 1295 bytes .../src/main/res/mipmap-mdpi/ic_launcher_round.png | Bin 0 -> 2421 bytes main/src/main/res/mipmap-xhdpi/banner_tv.png | Bin 21996 -> 30814 bytes main/src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 7520 -> 2579 bytes .../main/res/mipmap-xhdpi/ic_launcher_round.png | Bin 0 -> 5533 bytes main/src/main/res/mipmap-xxhdpi/ic_launcher.png | Bin 13017 -> 4015 bytes .../main/res/mipmap-xxhdpi/ic_launcher_round.png | Bin 0 -> 8590 bytes main/src/main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 18967 -> 5656 bytes .../main/res/mipmap-xxxhdpi/ic_launcher_round.png | Bin 0 -> 12571 bytes main/src/main/res/values/colours.xml | 1 + misc/Banner_besser_tv.png | Bin 62798 -> 90044 bytes misc/Banner_besser_tv.psd | Bin 851334 -> 998794 bytes misc/ic_launcher-playstore.png | Bin 0 -> 17429 bytes misc/logo_arne3.svg | 114 +++++++++++++++++++++ misc/logo_bunt.svg | 19 ++++ misc/logo_sw.svg | 8 ++ 24 files changed, 220 insertions(+) create mode 100644 main/src/main/res/drawable/ic_launcher3_foreground.xml create mode 100644 main/src/main/res/drawable/ic_logo_bunt.xml create mode 100644 main/src/main/res/drawable/ic_logo_sw.xml create mode 100644 main/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 main/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml mode change 100755 => 100644 main/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 main/src/main/res/mipmap-hdpi/ic_launcher_round.png mode change 100755 => 100644 main/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 main/src/main/res/mipmap-mdpi/ic_launcher_round.png mode change 100755 => 100644 main/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 main/src/main/res/mipmap-xhdpi/ic_launcher_round.png mode change 100755 => 100644 main/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 main/src/main/res/mipmap-xxhdpi/ic_launcher_round.png mode change 100755 => 100644 main/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 main/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 misc/ic_launcher-playstore.png create mode 100644 misc/logo_arne3.svg create mode 100644 misc/logo_bunt.svg create mode 100644 misc/logo_sw.svg diff --git a/main/src/main/AndroidManifest.xml b/main/src/main/AndroidManifest.xml index eb0c0d4f..fd21400b 100644 --- a/main/src/main/AndroidManifest.xml +++ b/main/src/main/AndroidManifest.xml @@ -31,6 +31,7 @@ android:appCategory="productivity" android:extractNativeLibs="true" android:icon="@mipmap/ic_launcher" + android:roundIcon="@mipmap/ic_launcher_round" android:label="@string/app" android:supportsRtl="true" android:theme="@style/blinkt" diff --git a/main/src/main/res/drawable/ic_launcher3_foreground.xml b/main/src/main/res/drawable/ic_launcher3_foreground.xml new file mode 100644 index 00000000..0a10a5a2 --- /dev/null +++ b/main/src/main/res/drawable/ic_launcher3_foreground.xml @@ -0,0 +1,21 @@ + + + + + + + diff --git a/main/src/main/res/drawable/ic_logo_bunt.xml b/main/src/main/res/drawable/ic_logo_bunt.xml new file mode 100644 index 00000000..0a10a5a2 --- /dev/null +++ b/main/src/main/res/drawable/ic_logo_bunt.xml @@ -0,0 +1,21 @@ + + + + + + + diff --git a/main/src/main/res/drawable/ic_logo_sw.xml b/main/src/main/res/drawable/ic_logo_sw.xml new file mode 100644 index 00000000..89ca9b36 --- /dev/null +++ b/main/src/main/res/drawable/ic_logo_sw.xml @@ -0,0 +1,21 @@ + + + + + + + diff --git a/main/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/main/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 00000000..7be41c60 --- /dev/null +++ b/main/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/main/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/main/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 00000000..9602a2e6 --- /dev/null +++ b/main/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/main/src/main/res/mipmap-hdpi/ic_launcher.png b/main/src/main/res/mipmap-hdpi/ic_launcher.png old mode 100755 new mode 100644 index 52fc9219..6cba5fe6 Binary files a/main/src/main/res/mipmap-hdpi/ic_launcher.png and b/main/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/main/src/main/res/mipmap-hdpi/ic_launcher_round.png b/main/src/main/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 00000000..7547ee07 Binary files /dev/null and b/main/src/main/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/main/src/main/res/mipmap-mdpi/ic_launcher.png b/main/src/main/res/mipmap-mdpi/ic_launcher.png old mode 100755 new mode 100644 index d99f7d91..060a3f61 Binary files a/main/src/main/res/mipmap-mdpi/ic_launcher.png and b/main/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/main/src/main/res/mipmap-mdpi/ic_launcher_round.png b/main/src/main/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 00000000..31d3debb Binary files /dev/null and b/main/src/main/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/main/src/main/res/mipmap-xhdpi/banner_tv.png b/main/src/main/res/mipmap-xhdpi/banner_tv.png index 8ffb5f43..e7418f9b 100644 Binary files a/main/src/main/res/mipmap-xhdpi/banner_tv.png and b/main/src/main/res/mipmap-xhdpi/banner_tv.png differ diff --git a/main/src/main/res/mipmap-xhdpi/ic_launcher.png b/main/src/main/res/mipmap-xhdpi/ic_launcher.png old mode 100755 new mode 100644 index 04ebb081..f1e8ebb7 Binary files a/main/src/main/res/mipmap-xhdpi/ic_launcher.png and b/main/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/main/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/main/src/main/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 00000000..b87b4c00 Binary files /dev/null and b/main/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/main/src/main/res/mipmap-xxhdpi/ic_launcher.png b/main/src/main/res/mipmap-xxhdpi/ic_launcher.png old mode 100755 new mode 100644 index 69bea5a6..6f769e15 Binary files a/main/src/main/res/mipmap-xxhdpi/ic_launcher.png and b/main/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/main/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/main/src/main/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 00000000..65db499b Binary files /dev/null and b/main/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/main/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/main/src/main/res/mipmap-xxxhdpi/ic_launcher.png old mode 100755 new mode 100644 index b9b738b1..a0fc68b9 Binary files a/main/src/main/res/mipmap-xxxhdpi/ic_launcher.png and b/main/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/main/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/main/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 00000000..84651055 Binary files /dev/null and b/main/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/main/src/main/res/values/colours.xml b/main/src/main/res/values/colours.xml index cf4a2a7f..5576d43a 100644 --- a/main/src/main/res/values/colours.xml +++ b/main/src/main/res/values/colours.xml @@ -21,4 +21,5 @@ #ff0000 #0000ff + #F2F2F2 \ No newline at end of file diff --git a/misc/Banner_besser_tv.png b/misc/Banner_besser_tv.png index 39184f71..43b7969e 100644 Binary files a/misc/Banner_besser_tv.png and b/misc/Banner_besser_tv.png differ diff --git a/misc/Banner_besser_tv.psd b/misc/Banner_besser_tv.psd index b2a0d0ce..5703ba19 100644 Binary files a/misc/Banner_besser_tv.psd and b/misc/Banner_besser_tv.psd differ diff --git a/misc/ic_launcher-playstore.png b/misc/ic_launcher-playstore.png new file mode 100644 index 00000000..1b670625 Binary files /dev/null and b/misc/ic_launcher-playstore.png differ diff --git a/misc/logo_arne3.svg b/misc/logo_arne3.svg new file mode 100644 index 00000000..916728f6 --- /dev/null +++ b/misc/logo_arne3.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/misc/logo_bunt.svg b/misc/logo_bunt.svg new file mode 100644 index 00000000..6d0d57bf --- /dev/null +++ b/misc/logo_bunt.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/misc/logo_sw.svg b/misc/logo_sw.svg new file mode 100644 index 00000000..421c9561 --- /dev/null +++ b/misc/logo_sw.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file -- cgit v1.2.3