Skip to content

Commit

Permalink
add debug keystore
Browse files Browse the repository at this point in the history
  • Loading branch information
joreilly committed Sep 16, 2019
1 parent 430dd54 commit 7cf560c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,14 @@ android {
compileSdkVersion AndroidSdk.compile

signingConfigs {

debug {
keyAlias 'debug'
keyPassword 'android'
storeFile file('../debug.jks')
storePassword 'android'
}

config {
storeFile file('/Users/jooreill/devroot/keystore/galwaybus_android.jks')
keyAlias keystoreProperties['keyAlias']
Expand Down Expand Up @@ -66,6 +74,10 @@ android {
signingConfig signingConfigs.config
}

debug {
signingConfig signingConfigs.debug
}

applicationVariants.all { variant ->
if (variant.buildType.name.equals("debug")) {
variant.mergedFlavor.resourceConfigurations.clear()
Expand Down
Binary file added debug.jks
Binary file not shown.

0 comments on commit 7cf560c

Please sign in to comment.