Skip to content

Commit

Permalink
setup common debug key for all users
Browse files Browse the repository at this point in the history
  • Loading branch information
wangerekaharun committed Sep 23, 2023
1 parent 51f143f commit dfef1f3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,15 @@ android {
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}

signingConfigs {
getByName("debug") {
storeFile = file("../keystore/dckedebug.keystore")
keyAlias = "dcke"
keyPassword = "droidconkenya"
storePassword = "droidconkenya"
}
}

buildTypes {
getByName("release") {
isMinifyEnabled = false
Expand All @@ -38,6 +47,13 @@ android {
"proguard-rules.pro"
)
}
debug {
isDebuggable = true
signingConfig = signingConfigs.getByName("debug")
}
named("debug") {

}
}

packagingOptions {
Expand Down
Binary file added keystore/dckedebug.keystore
Binary file not shown.

0 comments on commit dfef1f3

Please sign in to comment.