From 46e972b228d2a7a0845371b94741f9f5f032c5ea Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 2 Jun 2026 15:32:28 +0000 Subject: [PATCH] Fix adaptive icon foreground pointing to old mipmap webp instead of new drawable The anydpi-v26 adaptive icon XMLs referenced @mipmap/ic_launcher_foreground (the old .webp raster files) rather than @drawable/ic_launcher_foreground (the updated vector XML), so the new icon was never used on API 26+ devices. https://claude.ai/code/session_01V7wuwMNtZd7o4iC6raE9NC --- app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml | 2 +- app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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..bbd3e02 100644 --- a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -1,5 +1,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..bbd3e02 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 @@ -1,5 +1,5 @@ - + \ No newline at end of file