Skip to content

Commit

Permalink
Fix retrieval of sample app release signing configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
rm3l committed Jan 8, 2018
1 parent ef471d7 commit 09cccc8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions maoni-sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,16 +65,16 @@ android {
def (store_file, store_password, key_alias, key_password) = rootProject.getReleaseSigningInfo(android)

if (key_alias != null) {
keyAlias keyAlias
keyAlias key_alias
}
if (key_password != null) {
keyPassword keyPassword
keyPassword key_password
}
if (store_file != null) {
storeFile store_file
}
if (store_password != null) {
storePassword storePassword
storePassword store_password
}
}
}
Expand Down

0 comments on commit 09cccc8

Please sign in to comment.