mirror of
https://github.com/bitwarden/android.git
synced 2024-11-21 08:55:48 +03:00
BIT-4: Add shared debug.keystore and debug signing config (#54)
This commit is contained in:
parent
14d01877fe
commit
4a49781ae1
2 changed files with 10 additions and 0 deletions
|
@ -23,9 +23,19 @@ android {
|
|||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
|
||||
signingConfigs {
|
||||
getByName("debug") {
|
||||
keyAlias = "androiddebugkey"
|
||||
keyPassword = "android"
|
||||
storeFile = file("../keystores/debug.keystore")
|
||||
storePassword = "android"
|
||||
}
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
debug {
|
||||
applicationIdSuffix = ".dev"
|
||||
signingConfig = signingConfigs.getByName("debug")
|
||||
isDebuggable = true
|
||||
isMinifyEnabled = false
|
||||
}
|
||||
|
|
BIN
keystores/debug.keystore
Normal file
BIN
keystores/debug.keystore
Normal file
Binary file not shown.
Loading…
Reference in a new issue