Details
-
Bug
-
Resolution: Fixed
-
P1: Critical
-
6.9.0
-
None
-
-
75367d1cf (dev), b17209029 (6.9), 5634bc529 (6.9.0)
-
2025wk08s1QtforAndroid, 2025wk10s1QtforAndroid
Description
When installing an app from an APK that's served from the AAB, there will be multiple split APKs for various configurations, at the moment Qt fails to load libraries from those split APKs because the libraries are in a separate APK (for example base-arm64_v8a.apk). The feature needs to account for those various cases because the Play Store uses that mechanism.
The workaround for now is to disable the feature by adding the following to build.gradle
android {
...
packagingOptions.jniLibs.useLegacyPackaging true
...
}