Skip to content

Commit

Permalink
Add test sign key in test project.
Browse files Browse the repository at this point in the history
  • Loading branch information
terrakok committed Feb 12, 2024
1 parent fbf5dbe commit cf04f46
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,21 @@ android {
versionCode = 1
versionName = "1.0"
}
signingConfigs {
create("testkey") {
storeFile = project.file("key/debug.keystore")
storePassword = "android"
keyAlias = "androiddebugkey"
keyPassword = "android"
}
}
buildTypes {
getByName("release") {
initWith(getByName("debug"))
isMinifyEnabled = false
signingConfig = signingConfigs.getByName("testkey")
}
getByName("debug") {
signingConfig = signingConfigs.getByName("testkey")
}
}
compileOptions {
Expand Down
Binary file not shown.

0 comments on commit cf04f46

Please sign in to comment.