mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-06 03:15:48 -06:00
fix: Increase version code for ABIs to match previous schema
This commit is contained in:
@@ -103,7 +103,9 @@ android.applicationVariants.all { variant ->
|
||||
def abiName = output.getFilter(OutputFile.ABI)
|
||||
def abiVersionCode = project.ext.abiCodes.get(abiName)
|
||||
if (abiVersionCode != null) {
|
||||
output.versionCodeOverride = variant.versionCode * 10 + abiVersionCode
|
||||
output.versionCodeOverride = abiVersionCode * 1000 + variant.versionCode
|
||||
println(abiName + ": " + output.versionCodeOverride)
|
||||
// output.versionCodeOverride = variant.versionCode * 10 + abiVersionCode
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user