From 2d6f4061ce45803f24ac69bbf0041705f7b64532 Mon Sep 17 00:00:00 2001 From: Attacktive Date: Thu, 27 Aug 2026 15:31:00 +0900 Subject: [PATCH] fix: declare live wallpaper support as a required feature Android Go edition and stripped OEM ROMs ship without live wallpaper support, so Weatherd cannot function on them at all. Without a uses-feature declaration Play offered the app to those devices anyway, which produced install-then-fail reports from users who never had a working path. Declaring android.software.live_wallpaper as required lets Play filter the app out for those devices up front, complementing the runtime fallback that shows a toast when no wallpaper chooser resolves. Co-Authored-By: Claude Opus 5 --- app/src/main/AndroidManifest.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 2111cfe..d41ab0d 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -4,6 +4,8 @@ + +