From f98162b6d8ed70e571440c539ef053dce09f704d Mon Sep 17 00:00:00 2001 From: Orangerot Date: Sat, 11 Jan 2025 17:14:41 +0100 Subject: feat: add launcher name and launcher icon --- android/app/src/main/AndroidManifest.xml | 2 +- .../main/res/drawable-hdpi/ic_launcher_foreground.png | Bin 0 -> 3555 bytes .../main/res/drawable-hdpi/ic_launcher_monochrome.png | Bin 0 -> 3555 bytes .../main/res/drawable-mdpi/ic_launcher_foreground.png | Bin 0 -> 2497 bytes .../main/res/drawable-mdpi/ic_launcher_monochrome.png | Bin 0 -> 2497 bytes .../res/drawable-xhdpi/ic_launcher_foreground.png | Bin 0 -> 4503 bytes .../res/drawable-xhdpi/ic_launcher_monochrome.png | Bin 0 -> 4503 bytes .../res/drawable-xxhdpi/ic_launcher_foreground.png | Bin 0 -> 6323 bytes .../res/drawable-xxhdpi/ic_launcher_monochrome.png | Bin 0 -> 6323 bytes .../res/drawable-xxxhdpi/ic_launcher_foreground.png | Bin 0 -> 8222 bytes .../res/drawable-xxxhdpi/ic_launcher_monochrome.png | Bin 0 -> 8222 bytes .../src/main/res/mipmap-anydpi-v26/ic_launcher.xml | 14 ++++++++++++++ android/app/src/main/res/mipmap-hdpi/ic_launcher.png | Bin 544 -> 1737 bytes android/app/src/main/res/mipmap-mdpi/ic_launcher.png | Bin 442 -> 1141 bytes android/app/src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 721 -> 2251 bytes .../app/src/main/res/mipmap-xxhdpi/ic_launcher.png | Bin 1031 -> 3280 bytes .../app/src/main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 1443 -> 4049 bytes android/app/src/main/res/values/colors.xml | 4 ++++ 18 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png create mode 100644 android/app/src/main/res/drawable-hdpi/ic_launcher_monochrome.png create mode 100644 android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png create mode 100644 android/app/src/main/res/drawable-mdpi/ic_launcher_monochrome.png create mode 100644 android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png create mode 100644 android/app/src/main/res/drawable-xhdpi/ic_launcher_monochrome.png create mode 100644 android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png create mode 100644 android/app/src/main/res/drawable-xxhdpi/ic_launcher_monochrome.png create mode 100644 android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png create mode 100644 android/app/src/main/res/drawable-xxxhdpi/ic_launcher_monochrome.png create mode 100644 android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 android/app/src/main/res/values/colors.xml (limited to 'android') diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 814f033..0ba4ed0 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -17,7 +17,7 @@ + + + + + + + + + diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png index db77bb4..ccf987a 100644 Binary files a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png and b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png index 17987b7..c2dc3c9 100644 Binary files a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png and b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png index 09d4391..7f16f43 100644 Binary files a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png and b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png index d5f1c8d..6ef798c 100644 Binary files a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png index 4d6372e..effd3d2 100644 Binary files a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/values/colors.xml b/android/app/src/main/res/values/colors.xml new file mode 100644 index 0000000..ab98328 --- /dev/null +++ b/android/app/src/main/res/values/colors.xml @@ -0,0 +1,4 @@ + + + #ffffff + \ No newline at end of file -- cgit v1.2.3