Browse Source

Bumping version for beta

master
anthony restaino 7 years ago
parent
commit
b39d264d46
  1. 6
      app/build.gradle
  2. 4
      build.gradle

6
app/build.gradle

@ -8,7 +8,7 @@ android { @@ -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 { @@ -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
}
}

4
build.gradle

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

Loading…
Cancel
Save