Skip to content
This repository was archived by the owner on Apr 9, 2020. It is now read-only.

Commit

Permalink
increment versionCode for release
Browse files Browse the repository at this point in the history
  • Loading branch information
gmh04 committed Mar 28, 2017
1 parent fdfafd0 commit 42e260b
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -90,18 +90,20 @@ android {
applicationId "uk.ac.edina.curiousedinburgh"
minSdkVersion 16
targetSdkVersion 22
versionCode 1
versionCode 2
versionName "2.0.0"
ndk {
abiFilters "armeabi-v7a", "x86"
}
}
signingConfigs {
release {
storeFile file(CE_RELEASE_STORE_FILE)
storePassword CE_RELEASE_STORE_PASSWORD
keyAlias CE_RELEASE_KEY_ALIAS
keyPassword CE_RELEASE_KEY_PASSWORD
if (project.hasProperty('CE_RELEASE_STORE_FILE')) {
storeFile file(CE_RELEASE_STORE_FILE)
storePassword CE_RELEASE_STORE_PASSWORD
keyAlias CE_RELEASE_KEY_ALIAS
keyPassword CE_RELEASE_KEY_PASSWORD
}
}
}
splits {
Expand Down

0 comments on commit 42e260b

Please sign in to comment.