Skip to content

Commit

Permalink
re-added code signing
Browse files Browse the repository at this point in the history
  • Loading branch information
trolley813 committed Sep 9, 2017
1 parent bd82e32 commit 52ef1d1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,18 @@ android {
}
productFlavors {
}
signingConfigs {
release {
storeFile file(RELEASE_STORE_FILE)
storePassword RELEASE_STORE_PASSWORD
keyAlias RELEASE_KEY_ALIAS
keyPassword RELEASE_KEY_PASSWORD
}
}
buildTypes {
release {
signingConfig signingConfigs.release
}
}
}
// called every time gradle gets executed, takes the native dependencies of
Expand Down

0 comments on commit 52ef1d1

Please sign in to comment.