Skip to content
Snippets Groups Projects
Commit 02a74b10 authored by Daniel Gultsch's avatar Daniel Gultsch
Browse files

use better version code for universal to allow people to upgrade from abi to...

use better version code for universal to allow people to upgrade from abi to univerals as long is the base version is higher
parent 96f6ae2b
No related branches found
No related tags found
No related merge requests found
......@@ -270,6 +270,8 @@ android {
def baseAbiVersionCode = project.ext.abiCodes.get(output.getFilter(OutputFile.ABI))
if (baseAbiVersionCode != null) {
output.versionCodeOverride = (100 * variant.versionCode) + baseAbiVersionCode
} else {
output.versionCodeOverride = (100 * variant.versionCode)
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment