diff --git a/contrib/android/Dockerfile b/contrib/android/Dockerfile index 304956737..b88a6acb5 100644 --- a/contrib/android/Dockerfile +++ b/contrib/android/Dockerfile @@ -160,8 +160,8 @@ RUN cd /opt \ && cd buildozer \ && git remote add sombernight https://github.com/SomberNight/buildozer \ && git fetch --all \ - # commit: kivy/buildozer "1.2.0" tag - && git checkout "94cfcb8d591c11d6ad0e11f129b08c1e27a161c5^{commit}" \ + # commit: from branch sombernight/202104_android_adaptiveicon + && git checkout "0ce292fabec299c78c8ffeaf42072ab879f29d8a^{commit}" \ && python3 -m pip install --user -e . # install python-for-android @@ -171,7 +171,7 @@ RUN cd /opt \ && git remote add sombernight https://github.com/SomberNight/python-for-android \ && git fetch --all \ # commit: from branch sombernight/electrum_20200703 - && git checkout "0dd2ce87a8f380d20505ca5dc1e2d2357b4a08fc^{commit}" \ + && git checkout "a4059599211a87af895d9ee2223f052a406357ca^{commit}" \ && python3 -m pip install --user -e . # build env vars diff --git a/contrib/android/buildozer.spec b/contrib/android/buildozer.spec index ed45be30c..05b66ce43 100644 --- a/contrib/android/buildozer.spec +++ b/contrib/android/buildozer.spec @@ -53,7 +53,9 @@ requirements = presplash.filename = %(source.dir)s/electrum/gui/icons/electrum_presplash.png # (str) Icon of the application -icon.filename = %(source.dir)s/electrum/gui/icons/Electrum_512.png +icon.filename = %(source.dir)s/electrum/gui/icons/android_electrum_icon_legacy.png +icon.adaptive_foreground.filename = %(source.dir)s/electrum/gui/icons/android_electrum_icon_foreground.png +icon.adaptive_background.filename = %(source.dir)s/electrum/gui/icons/android_electrum_icon_background.png # (str) Supported orientation (one of landscape, portrait or all) orientation = portrait diff --git a/electrum/gui/icons/android_electrum_icon_background.png b/electrum/gui/icons/android_electrum_icon_background.png new file mode 100644 index 000000000..81da07263 Binary files /dev/null and b/electrum/gui/icons/android_electrum_icon_background.png differ diff --git a/electrum/gui/icons/android_electrum_icon_foreground.png b/electrum/gui/icons/android_electrum_icon_foreground.png new file mode 100644 index 000000000..b6bb5b149 Binary files /dev/null and b/electrum/gui/icons/android_electrum_icon_foreground.png differ diff --git a/electrum/gui/icons/android_electrum_icon_legacy.png b/electrum/gui/icons/android_electrum_icon_legacy.png new file mode 100644 index 000000000..40d967855 Binary files /dev/null and b/electrum/gui/icons/android_electrum_icon_legacy.png differ