Skip to content

Commit

Permalink
add debug.keystore
Browse files Browse the repository at this point in the history
  • Loading branch information
chathil committed Jun 1, 2021
1 parent 450f016 commit d9b6b36
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,19 @@ android {
)
}

signingConfigs {
getByName("debug") {
storeFile = rootProject.file("debug.keystore")
storePassword = "android"
keyAlias = "androiddebugkey"
keyPassword = "android"
}
}

buildTypes {
debug {
signingConfig = signingConfigs.getByName("debug")
}
release {
isMinifyEnabled = false
proguardFiles(
Expand All @@ -71,6 +83,7 @@ android {
resources.excludes.add("META-INF/licenses/**")
resources.excludes.add("META-INF/AL2.0")
resources.excludes.add("META-INF/LGPL2.1")
resources.excludes.add("/*.jar")
}
}

Expand Down
Binary file added debug.keystore
Binary file not shown.

0 comments on commit d9b6b36

Please sign in to comment.