Merge branch 'development' into fix/issue-324

This commit is contained in:
Anton Stubenbord
2023-12-19 22:13:02 +01:00
5 changed files with 4 additions and 6 deletions

View File

@@ -103,9 +103,7 @@ android.applicationVariants.all { variant ->
def abiName = output.getFilter(OutputFile.ABI)
def abiVersionCode = project.ext.abiCodes.get(abiName)
if (abiVersionCode != null) {
output.versionCodeOverride = abiVersionCode * 1000 + variant.versionCode
println(abiName + ": " + output.versionCodeOverride)
// output.versionCodeOverride = variant.versionCode * 10 + abiVersionCode
output.versionCodeOverride = variant.versionCode * 10 + abiVersionCode
}
}
}
}

View File

@@ -63,7 +63,7 @@ class ChangelogDialog extends StatelessWidget {
}
const _versionNumbers = {
"59": "3.1.5",
"4003": "3.1.5",
"58": "3.1.4",
"57": "3.1.3",
"56": "3.1.2",

View File

@@ -15,7 +15,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 3.1.5+59
version: 3.1.5+400
environment:
sdk: ">=3.1.0 <4.0.0"