I am building an Android app with Qt and the ArcGIS SDK and ran into an issue when trying to upload the Android App Bundle (.aab) to Google Play. I got an error regarding the Google Play 64-bit requirement (see attached screenshot).
I in the end found the issue: arcgis_runtime_qml.pri contains the following line:
ANDROID_ABIS = arm64-v8a armeabi-v7a x86
The x86 is the offender, because x86_64 is missing.
This overrides the Qt Creator project settings.
Reverting above setting after including the pri resolved my problem.
Why is above line present in the pri?