BIT-4: Add shared debug.keystore and debug signing config (#54)

This commit is contained in:
Brian Yencho 2023-09-19 13:17:29 -05:00 committed by Álison Fernandes
parent 14d01877fe
commit 4a49781ae1
2 changed files with 10 additions and 0 deletions

View file

@ -23,9 +23,19 @@ android {
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
} }
signingConfigs {
getByName("debug") {
keyAlias = "androiddebugkey"
keyPassword = "android"
storeFile = file("../keystores/debug.keystore")
storePassword = "android"
}
}
buildTypes { buildTypes {
debug { debug {
applicationIdSuffix = ".dev" applicationIdSuffix = ".dev"
signingConfig = signingConfigs.getByName("debug")
isDebuggable = true isDebuggable = true
isMinifyEnabled = false isMinifyEnabled = false
} }

BIN
keystores/debug.keystore Normal file

Binary file not shown.