feat: add red debug icon and separate debug update URL

- Replace hardcoded vector fill color with @color/ic_launcher_foreground
- Override foreground to #E53935 (red) for debug builds
- Use manifest placeholders for build-type specific update URLs
- Update release URL to https://apks.t.bbara.hu/apks/purefin-app/update.json
- Add APK repository upload guide to README
This commit is contained in:
Purefin Dev
2026-05-23 08:50:25 +00:00
parent 4c15474ad9
commit 2e4eb2fb30
6 changed files with 47 additions and 5 deletions

View File

@@ -26,6 +26,7 @@ android {
debug {
applicationIdSuffix = ".debug"
versionNameSuffix = "-debug"
manifestPlaceholders["updateManifestUrl"] = "https://apks.t.bbara.hu/apks/purefin-app-debug/update.json"
}
release {
// Enables code-related app optimization.
@@ -33,6 +34,7 @@ android {
// Enables resource shrinking.
isShrinkResources = true
manifestPlaceholders["updateManifestUrl"] = "https://apks.t.bbara.hu/apks/purefin-app/update.json"
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
)