removed version code variables (to support automatic assembly in f-droid)

This commit is contained in:
Boris Timofeev 2017-08-26 14:01:33 +03:00
parent f137b4950f
commit b1705b3e7d

View file

@ -1,8 +1,3 @@
def versionMajor = 0
def versionMinor = 14
def versionPatch = 2
def versionBuild = 0
apply plugin: 'com.android.application'
android {
@ -17,8 +12,8 @@ android {
applicationId "org.emunix.unipatcher"
minSdkVersion 14
targetSdkVersion 25
versionCode versionMajor * 1000000 + versionMinor * 10000 + versionPatch * 100 + versionBuild
versionName "${versionMajor}.${versionMinor}.${versionPatch}"
versionCode 140200
versionName "0.14.2"
ndk {
abiFilters 'armeabi', 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64', 'mips64', 'mips'
}