From 4356f759e0cfbd2b4937bb5c421c05220333b0aa Mon Sep 17 00:00:00 2001 From: Infi Date: Fri, 23 Dec 2022 14:57:49 +0100 Subject: [PATCH] feat: android 13+ material you icon support - https://developer.android.com/about/versions/13/features#themed-app-icons --- .gitignore | 1 + .idea/deploymentTargetDropDown.xml | 17 ----------------- .../res/drawable-v31/ic_launcher_monochrome.xml | 11 +++++++++++ .../res/drawable/ic_launcher_monochrome.xml | 11 +++++++++++ .../main/res/mipmap-anydpi-v26/ic_launcher.xml | 1 + .../res/mipmap-anydpi-v26/ic_launcher_round.xml | 1 + 6 files changed, 25 insertions(+), 17 deletions(-) delete mode 100644 .idea/deploymentTargetDropDown.xml create mode 100644 app/src/main/res/drawable-v31/ic_launcher_monochrome.xml create mode 100644 app/src/main/res/drawable/ic_launcher_monochrome.xml diff --git a/.gitignore b/.gitignore index aa724b77..82e4fd4b 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ /.idea/workspace.xml /.idea/navEditor.xml /.idea/assetWizardSettings.xml +/.idea/deploymentTargetDropDown.xml .DS_Store /build /captures diff --git a/.idea/deploymentTargetDropDown.xml b/.idea/deploymentTargetDropDown.xml deleted file mode 100644 index 99e791bc..00000000 --- a/.idea/deploymentTargetDropDown.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/app/src/main/res/drawable-v31/ic_launcher_monochrome.xml b/app/src/main/res/drawable-v31/ic_launcher_monochrome.xml new file mode 100644 index 00000000..06e5a402 --- /dev/null +++ b/app/src/main/res/drawable-v31/ic_launcher_monochrome.xml @@ -0,0 +1,11 @@ + + + diff --git a/app/src/main/res/drawable/ic_launcher_monochrome.xml b/app/src/main/res/drawable/ic_launcher_monochrome.xml new file mode 100644 index 00000000..5d25ac24 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_monochrome.xml @@ -0,0 +1,11 @@ + + + diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml index eca70cfe..b070c763 100644 --- a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -2,4 +2,5 @@ + \ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml index eca70cfe..b070c763 100644 --- a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -2,4 +2,5 @@ + \ No newline at end of file