mirror of
https://github.com/bitwarden/android.git
synced 2024-11-22 01:16:02 +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"
|
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
BIN
keystores/debug.keystore
Normal file
Binary file not shown.
Loading…
Reference in a new issue