diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 0ed72cf0..94a24f1b 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -73,196 +73,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/java/app/fedilab/android/mastodon/ui/fragment/settings/FragmentInterfaceSettings.java b/app/src/main/java/app/fedilab/android/mastodon/ui/fragment/settings/FragmentInterfaceSettings.java
index 3019cccb..92132e10 100644
--- a/app/src/main/java/app/fedilab/android/mastodon/ui/fragment/settings/FragmentInterfaceSettings.java
+++ b/app/src/main/java/app/fedilab/android/mastodon/ui/fragment/settings/FragmentInterfaceSettings.java
@@ -120,7 +120,6 @@ public class FragmentInterfaceSettings extends PreferenceFragmentCompat implemen
ListPreference SET_LOGO_LAUNCHER = findPreference(getString(R.string.SET_LOGO_LAUNCHER));
String newLauncher = sharedpreferences.getString(getString(R.string.SET_LOGO_LAUNCHER), "Bubbles");
if (Character.isUpperCase(newLauncher.codePointAt(0))) {
- hideAllIcons(requireActivity());
setIcon(requireActivity(), newLauncher);
SET_LOGO_LAUNCHER.setIcon(LogoHelper.getDrawable(newLauncher));
setDrawable(newLauncher);
@@ -134,57 +133,19 @@ public class FragmentInterfaceSettings extends PreferenceFragmentCompat implemen
}
}
- private void hideAllIcons(Context context) {
-
-
- context.getPackageManager().setComponentEnabledSetting(
- new ComponentName(BuildConfig.APPLICATION_ID, "app.fedilab.android.activities.MainActivity.Bubbles"),
- PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
-
- context.getPackageManager().setComponentEnabledSetting(
- new ComponentName(BuildConfig.APPLICATION_ID, "app.fedilab.android.activities.MainActivity.Fediverse"),
- PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
-
- context.getPackageManager().setComponentEnabledSetting(
- new ComponentName(BuildConfig.APPLICATION_ID, "app.fedilab.android.activities.MainActivity.Hero"),
- PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
-
- context.getPackageManager().setComponentEnabledSetting(
- new ComponentName(BuildConfig.APPLICATION_ID, "app.fedilab.android.activities.MainActivity.Atom"),
- PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
-
- context.getPackageManager().setComponentEnabledSetting(
- new ComponentName(BuildConfig.APPLICATION_ID, "app.fedilab.android.activities.MainActivity.BrainCrash"),
- PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
-
- context.getPackageManager().setComponentEnabledSetting(
- new ComponentName(BuildConfig.APPLICATION_ID, "app.fedilab.android.activities.MainActivity.Mastalab"),
- PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
-
- context.getPackageManager().setComponentEnabledSetting(
- new ComponentName(BuildConfig.APPLICATION_ID, "app.fedilab.android.activities.MainActivity.BubblesUA"),
- PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
-
- context.getPackageManager().setComponentEnabledSetting(
- new ComponentName(BuildConfig.APPLICATION_ID, "app.fedilab.android.activities.MainActivity.BubblesPeaGreen"),
- PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
-
- context.getPackageManager().setComponentEnabledSetting(
- new ComponentName(BuildConfig.APPLICATION_ID, "app.fedilab.android.activities.MainActivity.BubblesPride"),
- PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
-
- context.getPackageManager().setComponentEnabledSetting(
- new ComponentName(BuildConfig.APPLICATION_ID, "app.fedilab.android.activities.MainActivity.BubblesPink"),
- PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
- context.getPackageManager().setComponentEnabledSetting(
- new ComponentName(BuildConfig.APPLICATION_ID, "app.fedilab.android.activities.MainActivity.BubblesPirate"),
- PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
- }
-
- private void setIcon(Context context, String iconName) {
- context.getPackageManager().setComponentEnabledSetting(
- new ComponentName(BuildConfig.APPLICATION_ID, "app.fedilab.android.activities.MainActivity." + iconName),
- PackageManager.COMPONENT_ENABLED_STATE_ENABLED, PackageManager.DONT_KILL_APP);
+ private void setIcon(Context context, String theChosenIcon) {
+ String[] logoTypeValues = getResources().getStringArray(R.array.SET_LOGO_TYPE_VALUE);
+ for (String logoTypeValue : logoTypeValues) {
+ if (logoTypeValue.equals(theChosenIcon)) {
+ context.getPackageManager().setComponentEnabledSetting(
+ new ComponentName(BuildConfig.APPLICATION_ID, "app.fedilab.android.activities.MainActivity." + logoTypeValue),
+ PackageManager.COMPONENT_ENABLED_STATE_ENABLED, PackageManager.DONT_KILL_APP);
+ } else {
+ context.getPackageManager().setComponentEnabledSetting(
+ new ComponentName(BuildConfig.APPLICATION_ID, "app.fedilab.android.activities.MainActivity." + logoTypeValue),
+ PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
+ }
+ }
}
@Override
diff --git a/app/src/main/res/drawable-anydpi-v24/ic_launcher_purple_1_foreground.xml b/app/src/main/res/drawable-anydpi-v24/ic_launcher_purple_1_foreground.xml
new file mode 100644
index 00000000..56fcabf9
--- /dev/null
+++ b/app/src/main/res/drawable-anydpi-v24/ic_launcher_purple_1_foreground.xml
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/drawable-anydpi-v24/ic_launcher_warm_foreground.xml b/app/src/main/res/drawable-anydpi-v24/ic_launcher_warm_foreground.xml
new file mode 100644
index 00000000..7dcb40bc
--- /dev/null
+++ b/app/src/main/res/drawable-anydpi-v24/ic_launcher_warm_foreground.xml
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/drawables/mastodon/drawable/ic_launcher_confetti_foreground.xml b/app/src/main/res/drawables/mastodon/drawable/ic_launcher_confetti_foreground.xml
new file mode 100644
index 00000000..18d75aa1
--- /dev/null
+++ b/app/src/main/res/drawables/mastodon/drawable/ic_launcher_confetti_foreground.xml
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/drawables/mastodon/drawable/ic_launcher_jungle_foreground.xml b/app/src/main/res/drawables/mastodon/drawable/ic_launcher_jungle_foreground.xml
new file mode 100644
index 00000000..e2d096d7
--- /dev/null
+++ b/app/src/main/res/drawables/mastodon/drawable/ic_launcher_jungle_foreground.xml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/drawables/mastodon/drawable/ic_launcher_leaf_foreground.xml b/app/src/main/res/drawables/mastodon/drawable/ic_launcher_leaf_foreground.xml
new file mode 100644
index 00000000..a7638ff7
--- /dev/null
+++ b/app/src/main/res/drawables/mastodon/drawable/ic_launcher_leaf_foreground.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/drawables/mastodon/drawable/ic_launcher_mosaic_foreground.xml b/app/src/main/res/drawables/mastodon/drawable/ic_launcher_mosaic_foreground.xml
new file mode 100644
index 00000000..a506ce2f
--- /dev/null
+++ b/app/src/main/res/drawables/mastodon/drawable/ic_launcher_mosaic_foreground.xml
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/drawables/mastodon/drawable/ic_launcher_offset_foreground.xml b/app/src/main/res/drawables/mastodon/drawable/ic_launcher_offset_foreground.xml
new file mode 100644
index 00000000..8597b3f8
--- /dev/null
+++ b/app/src/main/res/drawables/mastodon/drawable/ic_launcher_offset_foreground.xml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/drawables/mastodon/drawable/ic_launcher_purple_2_foreground.xml b/app/src/main/res/drawables/mastodon/drawable/ic_launcher_purple_2_foreground.xml
new file mode 100644
index 00000000..0b7e26b8
--- /dev/null
+++ b/app/src/main/res/drawables/mastodon/drawable/ic_launcher_purple_2_foreground.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
diff --git a/app/src/main/res/drawables/mastodon/drawable/ic_launcher_spaghetti_foreground.xml b/app/src/main/res/drawables/mastodon/drawable/ic_launcher_spaghetti_foreground.xml
new file mode 100644
index 00000000..9d774e1d
--- /dev/null
+++ b/app/src/main/res/drawables/mastodon/drawable/ic_launcher_spaghetti_foreground.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/drawables/mastodon/drawable/ic_launcher_yellow_headed_red_bubble_foreground.xml b/app/src/main/res/drawables/mastodon/drawable/ic_launcher_yellow_headed_red_bubble_foreground.xml
new file mode 100644
index 00000000..c49567bf
--- /dev/null
+++ b/app/src/main/res/drawables/mastodon/drawable/ic_launcher_yellow_headed_red_bubble_foreground.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_confetti.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_confetti.xml
new file mode 100644
index 00000000..4e0ad6d8
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_confetti.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_confetti_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_confetti_round.xml
new file mode 100644
index 00000000..4e0ad6d8
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_confetti_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_jungle.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_jungle.xml
new file mode 100644
index 00000000..30df00b6
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_jungle.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_jungle_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_jungle_round.xml
new file mode 100644
index 00000000..30df00b6
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_jungle_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_leaf.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_leaf.xml
new file mode 100644
index 00000000..cf2dd488
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_leaf.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_leaf_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_leaf_round.xml
new file mode 100644
index 00000000..cf2dd488
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_leaf_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_mosaic.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_mosaic.xml
new file mode 100644
index 00000000..4ddba42b
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_mosaic.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_mosaic_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_mosaic_round.xml
new file mode 100644
index 00000000..4ddba42b
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_mosaic_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_offset.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_offset.xml
new file mode 100644
index 00000000..fd0c91dc
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_offset.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_offset_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_offset_round.xml
new file mode 100644
index 00000000..fd0c91dc
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_offset_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_purple_1.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_purple_1.xml
new file mode 100644
index 00000000..207aa2f0
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_purple_1.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_purple_1_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_purple_1_round.xml
new file mode 100644
index 00000000..207aa2f0
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_purple_1_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_purple_2.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_purple_2.xml
new file mode 100644
index 00000000..c48d25bf
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_purple_2.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_purple_2_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_purple_2_round.xml
new file mode 100644
index 00000000..c48d25bf
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_purple_2_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_spaghetti.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_spaghetti.xml
new file mode 100644
index 00000000..eaefb9d6
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_spaghetti.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_spaghetti_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_spaghetti_round.xml
new file mode 100644
index 00000000..eaefb9d6
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_spaghetti_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_warm.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_warm.xml
new file mode 100644
index 00000000..4364dc14
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_warm.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_warm_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_warm_round.xml
new file mode 100644
index 00000000..4364dc14
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_warm_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_yellow_headed_red_bubble.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_yellow_headed_red_bubble.xml
new file mode 100644
index 00000000..bfc3cbe0
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_yellow_headed_red_bubble.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_yellow_headed_red_bubble_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_yellow_headed_red_bubble_round.xml
new file mode 100644
index 00000000..bfc3cbe0
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_yellow_headed_red_bubble_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_confetti.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_confetti.webp
new file mode 100644
index 00000000..30b4094b
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_confetti.webp differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_confetti_round.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_confetti_round.webp
new file mode 100644
index 00000000..d41c2beb
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_confetti_round.webp differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_jungle.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_jungle.webp
new file mode 100644
index 00000000..ef2848cc
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_jungle.webp differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_jungle_round.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_jungle_round.webp
new file mode 100644
index 00000000..67e2761e
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_jungle_round.webp differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_leaf.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_leaf.webp
new file mode 100644
index 00000000..3ad4596e
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_leaf.webp differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_leaf_round.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_leaf_round.webp
new file mode 100644
index 00000000..b1fcfa44
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_leaf_round.webp differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_mosaic.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_mosaic.webp
new file mode 100644
index 00000000..4507c5af
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_mosaic.webp differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_mosaic_round.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_mosaic_round.webp
new file mode 100644
index 00000000..d090e632
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_mosaic_round.webp differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_offset.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_offset.webp
new file mode 100644
index 00000000..785333e7
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_offset.webp differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_offset_round.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_offset_round.webp
new file mode 100644
index 00000000..fbf43682
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_offset_round.webp differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_purple_1.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_purple_1.webp
new file mode 100644
index 00000000..58d9c84d
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_purple_1.webp differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_purple_1_round.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_purple_1_round.webp
new file mode 100644
index 00000000..c36479a3
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_purple_1_round.webp differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_purple_2.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_purple_2.webp
new file mode 100644
index 00000000..6a5c8fa7
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_purple_2.webp differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_purple_2_round.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_purple_2_round.webp
new file mode 100644
index 00000000..4539f011
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_purple_2_round.webp differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_spaghetti.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_spaghetti.webp
new file mode 100644
index 00000000..0ceb9841
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_spaghetti.webp differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_spaghetti_round.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_spaghetti_round.webp
new file mode 100644
index 00000000..7b5d5fd9
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_spaghetti_round.webp differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_warm.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_warm.webp
new file mode 100644
index 00000000..517acf24
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_warm.webp differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_warm_round.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_warm_round.webp
new file mode 100644
index 00000000..8977bcba
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_warm_round.webp differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_yellow_headed_red_bubble.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_yellow_headed_red_bubble.webp
new file mode 100644
index 00000000..f2805a30
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_yellow_headed_red_bubble.webp differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_yellow_headed_red_bubble_round.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_yellow_headed_red_bubble_round.webp
new file mode 100644
index 00000000..715574b3
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_yellow_headed_red_bubble_round.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_confetti.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_confetti.webp
new file mode 100644
index 00000000..7c0f940b
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_confetti.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_confetti_round.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_confetti_round.webp
new file mode 100644
index 00000000..f9f4a9b4
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_confetti_round.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_jungle.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_jungle.webp
new file mode 100644
index 00000000..a3bdb06e
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_jungle.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_jungle_round.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_jungle_round.webp
new file mode 100644
index 00000000..87c1d102
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_jungle_round.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_leaf.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_leaf.webp
new file mode 100644
index 00000000..ca218351
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_leaf.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_leaf_round.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_leaf_round.webp
new file mode 100644
index 00000000..982337f7
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_leaf_round.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_mosaic.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_mosaic.webp
new file mode 100644
index 00000000..dcd16e2e
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_mosaic.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_mosaic_round.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_mosaic_round.webp
new file mode 100644
index 00000000..1d839df0
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_mosaic_round.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_offset.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_offset.webp
new file mode 100644
index 00000000..4d0ca688
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_offset.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_offset_round.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_offset_round.webp
new file mode 100644
index 00000000..ede9d168
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_offset_round.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_purple_1.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_purple_1.webp
new file mode 100644
index 00000000..628d48a0
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_purple_1.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_purple_1_round.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_purple_1_round.webp
new file mode 100644
index 00000000..2bf5454a
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_purple_1_round.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_purple_2.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_purple_2.webp
new file mode 100644
index 00000000..f8bd8951
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_purple_2.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_purple_2_round.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_purple_2_round.webp
new file mode 100644
index 00000000..3635ecfd
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_purple_2_round.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_spaghetti.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_spaghetti.webp
new file mode 100644
index 00000000..8da912e5
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_spaghetti.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_spaghetti_round.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_spaghetti_round.webp
new file mode 100644
index 00000000..e0266fcb
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_spaghetti_round.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_warm.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_warm.webp
new file mode 100644
index 00000000..be3b0066
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_warm.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_warm_round.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_warm_round.webp
new file mode 100644
index 00000000..085abb8d
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_warm_round.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_yellow_headed_red_bubble.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_yellow_headed_red_bubble.webp
new file mode 100644
index 00000000..66e42033
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_yellow_headed_red_bubble.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_yellow_headed_red_bubble_round.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_yellow_headed_red_bubble_round.webp
new file mode 100644
index 00000000..ffafe41a
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_yellow_headed_red_bubble_round.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_confetti.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_confetti.webp
new file mode 100644
index 00000000..a6fc2e11
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_confetti.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_confetti_round.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_confetti_round.webp
new file mode 100644
index 00000000..f570fbbb
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_confetti_round.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_jungle.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_jungle.webp
new file mode 100644
index 00000000..d6cc9b8d
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_jungle.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_jungle_round.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_jungle_round.webp
new file mode 100644
index 00000000..17e1f94f
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_jungle_round.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_leaf.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_leaf.webp
new file mode 100644
index 00000000..d55426ca
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_leaf.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_leaf_round.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_leaf_round.webp
new file mode 100644
index 00000000..fa384b3b
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_leaf_round.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_mosaic.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_mosaic.webp
new file mode 100644
index 00000000..3d70bde8
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_mosaic.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_mosaic_round.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_mosaic_round.webp
new file mode 100644
index 00000000..d8be880f
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_mosaic_round.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_offset.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_offset.webp
new file mode 100644
index 00000000..94876785
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_offset.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_offset_round.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_offset_round.webp
new file mode 100644
index 00000000..d2afc599
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_offset_round.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_purple_1.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_purple_1.webp
new file mode 100644
index 00000000..b7256f6f
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_purple_1.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_purple_1_round.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_purple_1_round.webp
new file mode 100644
index 00000000..814a3543
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_purple_1_round.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_purple_2.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_purple_2.webp
new file mode 100644
index 00000000..460f6935
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_purple_2.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_purple_2_round.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_purple_2_round.webp
new file mode 100644
index 00000000..2e93b5ce
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_purple_2_round.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_spaghetti.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_spaghetti.webp
new file mode 100644
index 00000000..a4806433
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_spaghetti.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_spaghetti_round.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_spaghetti_round.webp
new file mode 100644
index 00000000..099e5698
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_spaghetti_round.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_warm.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_warm.webp
new file mode 100644
index 00000000..f1f55f66
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_warm.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_warm_round.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_warm_round.webp
new file mode 100644
index 00000000..9075410f
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_warm_round.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_yellow_headed_red_bubble.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_yellow_headed_red_bubble.webp
new file mode 100644
index 00000000..c539dce1
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_yellow_headed_red_bubble.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_yellow_headed_red_bubble_round.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_yellow_headed_red_bubble_round.webp
new file mode 100644
index 00000000..66dcaab4
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_yellow_headed_red_bubble_round.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_confetti.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_confetti.webp
new file mode 100644
index 00000000..6488b906
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_confetti.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_confetti_round.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_confetti_round.webp
new file mode 100644
index 00000000..49487179
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_confetti_round.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_jungle.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_jungle.webp
new file mode 100644
index 00000000..e7207a48
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_jungle.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_jungle_round.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_jungle_round.webp
new file mode 100644
index 00000000..32eff82b
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_jungle_round.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_leaf.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_leaf.webp
new file mode 100644
index 00000000..86b6f433
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_leaf.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_leaf_round.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_leaf_round.webp
new file mode 100644
index 00000000..2fc02ab9
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_leaf_round.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_mosaic.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_mosaic.webp
new file mode 100644
index 00000000..68623c3e
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_mosaic.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_mosaic_round.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_mosaic_round.webp
new file mode 100644
index 00000000..791a0947
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_mosaic_round.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_offset.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_offset.webp
new file mode 100644
index 00000000..607288bd
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_offset.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_offset_round.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_offset_round.webp
new file mode 100644
index 00000000..a41c79be
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_offset_round.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_purple_1.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_purple_1.webp
new file mode 100644
index 00000000..61acf439
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_purple_1.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_purple_1_round.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_purple_1_round.webp
new file mode 100644
index 00000000..e3add432
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_purple_1_round.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_purple_2.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_purple_2.webp
new file mode 100644
index 00000000..d6e71b39
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_purple_2.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_purple_2_round.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_purple_2_round.webp
new file mode 100644
index 00000000..720da3b2
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_purple_2_round.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_spaghetti.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_spaghetti.webp
new file mode 100644
index 00000000..69d5cb1a
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_spaghetti.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_spaghetti_round.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_spaghetti_round.webp
new file mode 100644
index 00000000..c8d5cbce
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_spaghetti_round.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_warm.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_warm.webp
new file mode 100644
index 00000000..2cf8735b
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_warm.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_warm_round.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_warm_round.webp
new file mode 100644
index 00000000..f1dd68aa
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_warm_round.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_yellow_headed_red_bubble.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_yellow_headed_red_bubble.webp
new file mode 100644
index 00000000..6e1ad49e
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_yellow_headed_red_bubble.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_yellow_headed_red_bubble_round.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_yellow_headed_red_bubble_round.webp
new file mode 100644
index 00000000..a7d41180
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_yellow_headed_red_bubble_round.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_confetti.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_confetti.webp
new file mode 100644
index 00000000..32e83c8c
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_confetti.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_confetti_round.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_confetti_round.webp
new file mode 100644
index 00000000..2b9e7107
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_confetti_round.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_jungle.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_jungle.webp
new file mode 100644
index 00000000..f633b252
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_jungle.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_jungle_round.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_jungle_round.webp
new file mode 100644
index 00000000..f31246bc
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_jungle_round.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_leaf.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_leaf.webp
new file mode 100644
index 00000000..474144d2
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_leaf.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_leaf_round.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_leaf_round.webp
new file mode 100644
index 00000000..d070143a
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_leaf_round.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_mosaic.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_mosaic.webp
new file mode 100644
index 00000000..b43582a3
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_mosaic.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_mosaic_round.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_mosaic_round.webp
new file mode 100644
index 00000000..c732c7c1
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_mosaic_round.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_offset.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_offset.webp
new file mode 100644
index 00000000..cc2d45e8
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_offset.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_offset_round.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_offset_round.webp
new file mode 100644
index 00000000..e3e91245
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_offset_round.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_purple_1.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_purple_1.webp
new file mode 100644
index 00000000..35e5c113
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_purple_1.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_purple_1_round.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_purple_1_round.webp
new file mode 100644
index 00000000..fbbfb228
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_purple_1_round.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_purple_2.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_purple_2.webp
new file mode 100644
index 00000000..106005f5
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_purple_2.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_purple_2_round.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_purple_2_round.webp
new file mode 100644
index 00000000..cc13b287
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_purple_2_round.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_spaghetti.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_spaghetti.webp
new file mode 100644
index 00000000..47756238
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_spaghetti.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_spaghetti_round.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_spaghetti_round.webp
new file mode 100644
index 00000000..f726acb1
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_spaghetti_round.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_warm.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_warm.webp
new file mode 100644
index 00000000..2bf61260
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_warm.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_warm_round.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_warm_round.webp
new file mode 100644
index 00000000..87b052c8
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_warm_round.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_yellow_headed_red_bubble.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_yellow_headed_red_bubble.webp
new file mode 100644
index 00000000..63ab4d89
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_yellow_headed_red_bubble.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_yellow_headed_red_bubble_round.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_yellow_headed_red_bubble_round.webp
new file mode 100644
index 00000000..1f1b971f
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_yellow_headed_red_bubble_round.webp differ
diff --git a/app/src/main/res/values/ic_launcher_confetti_background.xml b/app/src/main/res/values/ic_launcher_confetti_background.xml
new file mode 100644
index 00000000..a30075af
--- /dev/null
+++ b/app/src/main/res/values/ic_launcher_confetti_background.xml
@@ -0,0 +1,4 @@
+
+
+ #FFFFFF
+
\ No newline at end of file
diff --git a/app/src/main/res/values/ic_launcher_jungle_background.xml b/app/src/main/res/values/ic_launcher_jungle_background.xml
new file mode 100644
index 00000000..01f9e245
--- /dev/null
+++ b/app/src/main/res/values/ic_launcher_jungle_background.xml
@@ -0,0 +1,4 @@
+
+
+ #FFFFFF
+
\ No newline at end of file
diff --git a/app/src/main/res/values/ic_launcher_leaf_background.xml b/app/src/main/res/values/ic_launcher_leaf_background.xml
new file mode 100644
index 00000000..50937dd2
--- /dev/null
+++ b/app/src/main/res/values/ic_launcher_leaf_background.xml
@@ -0,0 +1,4 @@
+
+
+ #FFFFFF
+
\ No newline at end of file
diff --git a/app/src/main/res/values/ic_launcher_mosaic_background.xml b/app/src/main/res/values/ic_launcher_mosaic_background.xml
new file mode 100644
index 00000000..f7cdc016
--- /dev/null
+++ b/app/src/main/res/values/ic_launcher_mosaic_background.xml
@@ -0,0 +1,4 @@
+
+
+ #FFFFFF
+
\ No newline at end of file
diff --git a/app/src/main/res/values/ic_launcher_offset_background.xml b/app/src/main/res/values/ic_launcher_offset_background.xml
new file mode 100644
index 00000000..11d97384
--- /dev/null
+++ b/app/src/main/res/values/ic_launcher_offset_background.xml
@@ -0,0 +1,4 @@
+
+
+ #FFFFFF
+
\ No newline at end of file
diff --git a/app/src/main/res/values/ic_launcher_purple_1_background.xml b/app/src/main/res/values/ic_launcher_purple_1_background.xml
new file mode 100644
index 00000000..30811b94
--- /dev/null
+++ b/app/src/main/res/values/ic_launcher_purple_1_background.xml
@@ -0,0 +1,4 @@
+
+
+ #FFFFFF
+
\ No newline at end of file
diff --git a/app/src/main/res/values/ic_launcher_purple_2_background.xml b/app/src/main/res/values/ic_launcher_purple_2_background.xml
new file mode 100644
index 00000000..47a964dc
--- /dev/null
+++ b/app/src/main/res/values/ic_launcher_purple_2_background.xml
@@ -0,0 +1,4 @@
+
+
+ #FFFFFF
+
\ No newline at end of file
diff --git a/app/src/main/res/values/ic_launcher_spaghetti_background.xml b/app/src/main/res/values/ic_launcher_spaghetti_background.xml
new file mode 100644
index 00000000..1b5a8d22
--- /dev/null
+++ b/app/src/main/res/values/ic_launcher_spaghetti_background.xml
@@ -0,0 +1,4 @@
+
+
+ #FFFFFF
+
\ No newline at end of file
diff --git a/app/src/main/res/values/ic_launcher_warm_background.xml b/app/src/main/res/values/ic_launcher_warm_background.xml
new file mode 100644
index 00000000..70422e0e
--- /dev/null
+++ b/app/src/main/res/values/ic_launcher_warm_background.xml
@@ -0,0 +1,4 @@
+
+
+ #FFFFFF
+
\ No newline at end of file
diff --git a/app/src/main/res/values/ic_launcher_yellow_headed_red_bubble_background.xml b/app/src/main/res/values/ic_launcher_yellow_headed_red_bubble_background.xml
new file mode 100644
index 00000000..dfbeb44d
--- /dev/null
+++ b/app/src/main/res/values/ic_launcher_yellow_headed_red_bubble_background.xml
@@ -0,0 +1,4 @@
+
+
+ #FFFFFF
+
\ No newline at end of file
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 15ee7630..36f21d29 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -795,6 +795,16 @@
- Atom
- BrainCrash
- Mastalab
+ - Leaf
+ - Offset
+ - Jungle
+ - Confetti
+ - Spaghetti
+ - Warm
+ - Purple_1
+ - Purple_2
+ - Yellow-Headed Red Bubble
+ - Mosaic
- Bubbles
@@ -808,6 +818,16 @@
- Atom
- BrainCrash
- Mastalab
+ - Leaf
+ - Offset
+ - Jungle
+ - Confetti
+ - Spaghetti
+ - Warm
+ - Purple1
+ - Purple2
+ - YellowHeadedRedBubble
+ - Mosaic
@@ -822,6 +842,16 @@
- @drawable/ic_launcher_atom_foreground
- @drawable/ic_launcher_crash_foreground
- @drawable/ic_launcher_mastalab_foreground
+ - @drawable/ic_launcher_leaf_foreground
+ - @drawable/ic_launcher_offset_foreground
+ - @drawable/ic_launcher_jungle_foreground
+ - @drawable/ic_launcher_confetti_foreground
+ - @drawable/ic_launcher_spaghetti_foreground
+ - @drawable/ic_launcher_warm_foreground
+ - @drawable/ic_launcher_purple_1_foreground
+ - @drawable/ic_launcher_purple_2_foreground
+ - @drawable/ic_launcher_yellow_headed_red_bubble_foreground
+ - @drawable/ic_launcher_mosaic_foreground