add signing config for release build
All checks were successful
Auto Tag on Version Change / check-version (push) Successful in 4s
Build and Release APK / build (push) Successful in 2m13s

This commit is contained in:
2026-05-15 17:04:37 +05:00
parent c4379c42c8
commit fe66b57c3a

View File

@@ -17,8 +17,18 @@ android {
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
signingConfigs {
create("release") {
storeFile = file("key.jks")
storePassword = System.getenv("KEYSTORE_PASSWORD")
keyAlias = System.getenv("KEY_ALIAS")
keyPassword = System.getenv("KEY_PASSWORD")
}
}
buildTypes {
release {
signingConfig = signingConfigs.getByName("release")
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),