flagged bugs fix

This commit is contained in:
Suriya
2026-07-23 11:11:25 +05:30
parent 842c2307d0
commit 6c7d656de5
11 changed files with 305 additions and 94 deletions

View File

@@ -47,7 +47,11 @@ android {
buildTypes {
release {
signingConfig = signingConfigs.getByName("release")
signingConfig = if (keystorePropertiesFile.exists()) {
signingConfigs.getByName("release")
} else {
signingConfigs.getByName("debug")
}
}
}
}