Skip to content

Commit

Permalink
Make signing optional for debug builds
Browse files Browse the repository at this point in the history
  • Loading branch information
winniequinn committed Aug 25, 2017
1 parent 49bc818 commit d5f0b18
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions simplified-app-simplye/build.gradle
Expand Up @@ -8,10 +8,10 @@ android {
}
signingConfigs {
release {
keyAlias property("org.librarysimplified.simplye.keyAlias")
keyPassword property("org.librarysimplified.simplye.keyPassword")
keyAlias findProperty("org.librarysimplified.simplye.keyAlias")
keyPassword findProperty("org.librarysimplified.simplye.keyPassword")
storeFile file("keystore.jks")
storePassword property("org.librarysimplified.simplye.storePassword")
storePassword findProperty("org.librarysimplified.simplye.storePassword")
}
}
buildTypes {
Expand Down

0 comments on commit d5f0b18

Please sign in to comment.