Change summary
build.gradle | 14 +-------------
1 file changed, 1 insertion(+), 13 deletions(-)
Detailed changes
@@ -150,7 +150,7 @@ android {
defaultConfig {
minSdkVersion 23
targetSdkVersion 34
- versionCode 42025 + tags.size()
+ versionCode 4205701
versionName grgit.describe(always: true)
applicationId "eu.siacs.conversations"
def appName = "Conversations"
@@ -318,16 +318,4 @@ android {
buildFeatures {
buildConfig true
}
-
- android.applicationVariants.configureEach { variant ->
- variant.outputs.each { output ->
- def baseAbiVersionCode = project.ext.abiCodes.get(output.getFilter(com.android.build.OutputFile.ABI))
- if (baseAbiVersionCode != null) {
- output.versionCodeOverride = (100 * project.android.defaultConfig.versionCode) + baseAbiVersionCode
- } else {
- output.versionCodeOverride = (100 * project.android.defaultConfig.versionCode) + grgit.log(includes: ["HEAD"], excludes: [tags.last()]).size()
- }
- }
-
- }
}