Skip to content

Commit

Permalink
Add Release signing
Browse files Browse the repository at this point in the history
  • Loading branch information
EXL committed May 4, 2017
1 parent bcc7745 commit 28ffc47
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions astrosmash/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,20 @@ android {
targetSdkVersion 16
}

signingConfigs {
release {
storeFile file(RELEASE_STORE_FILE)
storePassword RELEASE_STORE_PASSWORD
keyAlias RELEASE_KEY_ALIAS
keyPassword RELEASE_KEY_PASSWORD
}
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
signingConfig signingConfigs.release
}
}
}

0 comments on commit 28ffc47

Please sign in to comment.