1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

bumped version

This commit is contained in:
uburoiubu 2023-06-12 11:50:04 +02:00
parent da4f2e1708
commit 32d61526d6
No known key found for this signature in database
GPG key ID: C8FB80E0A595FBB6
3 changed files with 4 additions and 4 deletions

View file

@ -118,10 +118,10 @@ android {
// Configures multiple APKs based on ABI.
abi {
// Enables building multiple APKs per ABI.
enable false
enable true
reset()
include "armeabi-v7a", "arm64-v8a"//, "x86_64", "x86",
universalApk false
universalApk true
}
}

View file

@ -1,4 +1,4 @@
version.versionMajor=0
version.versionMinor=22
version.versionPatch=1
version.versionPatch=2
version.useDatedVersionName=false

View file

@ -100,7 +100,7 @@ ext.getBuildVersionName = {
def date = getCurrentDate()
return "${versionMajor}.${versionMinor}.${versionPatch}-${date}"
} else {
return "${versionMajor}.${versionMinor}.${versionPatch}-rc8"
return "${versionMajor}.${versionMinor}.${versionPatch}"
}
}