We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e71141 commit ee38865Copy full SHA for ee38865
android/app/build.gradle.kts
@@ -135,9 +135,7 @@ androidComponents {
135
// As required by F-Droid, version code at beginning and abi code at the end
136
// If wanting to build a universal APK with similar naming scheme, do so manually
137
// via `--build-number` argument from `flutter build apk`
138
- baseAbiCode * 100 + output.versionCode.get()
139
- // Default split apk version code, api code at beginning and version code at the end
140
- //baseAbiVersionCode * 1000 + variant.versionCode
+ output.versionCode.get() * 100 + baseAbiCode
141
)
142
}
143
0 commit comments