Skip to content

Commit

Permalink
add debug.keystore
Browse files Browse the repository at this point in the history
  • Loading branch information
gfx committed Feb 25, 2016
1 parent ce57f9d commit 8f01ac0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
Binary file added debug.keystore
Binary file not shown.
15 changes: 15 additions & 0 deletions example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,21 @@ android {
versionCode 1
versionName rootProject.ext.metadata.version
}
signingConfigs {
debug {
storeFile rootProject.file("debug.keystore")
storePassword "android"
keyAlias "androiddebugkey"
keyPassword "android"
}

release {
storeFile rootProject.file("debug.keystore")
storePassword "android"
keyAlias "androiddebugkey"
keyPassword "android"
}
}
buildTypes {
release {
minifyEnabled true
Expand Down

0 comments on commit 8f01ac0

Please sign in to comment.