Adding keystore config.

This commit is contained in:
sergiotarxz 2023-09-01 14:45:53 +02:00
parent f347d55413
commit 414c27fd86
2 changed files with 9 additions and 0 deletions

View File

@ -3,6 +3,14 @@ plugins {
}
android {
signingConfigs {
create("release") {
storeFile = file("/home/sergio/BInfoAndroid/burguillos.keystore")
storePassword = "burguillos"
keyAlias = "BurguillosInfo"
keyPassword = "burguillos"
}
}
namespace = "info.burguillos.bi"
compileSdk = 33
@ -23,6 +31,7 @@ android {
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
signingConfig = signingConfigs.getByName("release")
}
}
compileOptions {