enable all signatures

This commit is contained in:
2026-08-30 14:32:42 +03:00
parent 71d611f936
commit cf77ae33a1
2 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ plugins {
alias(libs.plugins.convention.ktor.client)
}
val appVersion = "1.26.8"
val appVersion = "1.27"
android {
buildFeatures { buildConfig = true }
@@ -34,6 +34,11 @@ class AndroidApplication : Plugin<Project> {
storePassword = properties.getProperty("RELEASE_STORE_PASSWORD")
keyAlias = properties.getProperty("RELEASE_KEY_ALIAS")
keyPassword = properties.getProperty("RELEASE_KEY_PASSWORD")
enableV1Signing = true
enableV2Signing = true
enableV3Signing = true
enableV4Signing = true
}
}
}