From a75ae069e10f39ecf82dc9eae3f04d3bd96c790c Mon Sep 17 00:00:00 2001 From: Artem Bespalov <88834530+arBespalov@users.noreply.github.com> Date: Wed, 10 Sep 2025 18:25:11 +0500 Subject: [PATCH 1/2] add themed icon --- app/src/main/res/drawable/ic_launcher_monochrome.xml | 11 +++++++++++ app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml | 1 + .../main/res/mipmap-anydpi-v26/ic_launcher_round.xml | 1 + 3 files changed, 13 insertions(+) create mode 100644 app/src/main/res/drawable/ic_launcher_monochrome.xml 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 0000000..8dab1f8 --- /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 c4a603d..d623fae 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 c4a603d..d623fae 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 From 3c6b9f3e58e27cd0011a57d64a6a12ae8466e678 Mon Sep 17 00:00:00 2001 From: Shane B Date: Sat, 13 Sep 2025 17:41:37 +0200 Subject: [PATCH 2/2] Fix the broken pipeline by providing a default secret value for build --- .github/workflows/build-debug.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-debug.yml b/.github/workflows/build-debug.yml index 73180e3..441fd1b 100644 --- a/.github/workflows/build-debug.yml +++ b/.github/workflows/build-debug.yml @@ -64,7 +64,7 @@ jobs: - name: Inject secrets.properties run: | - echo "MAPS_API_KEY=${{ secrets.MAPS_API_KEY }}" > secrets.properties + echo "MAPS_API_KEY=${{ secrets.MAPS_API_KEY || 'maps_key_default_value' }}" > secrets.properties # Run Tests Build - name: Run gradle tests