Bumping version for beta

This commit is contained in:
anthony restaino 2017-06-04 19:19:10 -04:00
parent 8a66a3f188
commit b39d264d46
2 changed files with 7 additions and 3 deletions

View File

@ -8,7 +8,7 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 25
versionName "4.4.2"
versionName project.versionName
vectorDrawables.useSupportLibrary = true
}
@ -35,13 +35,13 @@ android {
lightningPlus {
buildConfigField "boolean", "FULL_VERSION", "Boolean.parseBoolean(\"true\")"
applicationId "acr.browser.lightning"
versionCode 91
versionCode project.versionCode_plus
}
lightningLite {
buildConfigField "boolean", "FULL_VERSION", "Boolean.parseBoolean(\"false\")"
applicationId "acr.browser.barebones"
versionCode 93
versionCode project.versionCode_lite
}
}

View File

@ -19,4 +19,8 @@ ext {
minSdkVersion = 14
targetSdkVersion = 25
buildToolsVersion = '25.0.2'
versionName = '4.4.3'
versionCode_lite = 94
versionCode_plus = 92
}