Commit cb3fa2d9 authored by Mygod's avatar Mygod

Fix gradle build script

Now that we have max(versionCodes) = 211003, it's time to just change this versionCode scheme.
parent daea4b5f
...@@ -8,7 +8,7 @@ apply plugin: 'kotlin-android' ...@@ -8,7 +8,7 @@ apply plugin: 'kotlin-android'
def getCurrentFlavor() { def getCurrentFlavor() {
String task = getGradle().getStartParameter().getTaskRequests().toString() String task = getGradle().getStartParameter().getTaskRequests().toString()
Matcher matcher = Pattern.compile("(assemble|generate)\\w*(Release|Debug)").matcher(task) Matcher matcher = Pattern.compile("(assemble|generate)\\w*(Release|Debug)").matcher(task)
if (matcher.find()) return matcher.group(1).toLowerCase() else { if (matcher.find()) return matcher.group(2).toLowerCase() else {
println "Warning: No match found for $task" println "Warning: No match found for $task"
return "debug" return "debug"
} }
...@@ -21,7 +21,7 @@ android { ...@@ -21,7 +21,7 @@ android {
applicationId "com.github.shadowsocks" applicationId "com.github.shadowsocks"
minSdkVersion rootProject.minSdkVersion minSdkVersion rootProject.minSdkVersion
targetSdkVersion rootProject.sdkVersion targetSdkVersion rootProject.sdkVersion
versionCode 220 versionCode 4040600
versionName "4.4.6" versionName "4.4.6"
testApplicationId "com.github.shadowsocks.test" testApplicationId "com.github.shadowsocks.test"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment