removed version code variables (to support automatic assembly in f-droid)
This commit is contained in:
parent
f137b4950f
commit
b1705b3e7d
1 changed files with 2 additions and 7 deletions
|
@ -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'
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue