How can I include both ARMv7 and ARMv8? #4251
Unanswered
Boycraft123
asked this question in
Q&A
Replies: 1 comment 2 replies
|
There are two different cases here: APK and AAB. For a single APK, ADT does have an and describe adt -package -target apk-captive-runtime -arch all ...For Google Play, though, the better current workflow is usually an Android App Bundle. The AIR docs say AAB is the Google Play publishing format, and the Android descriptor docs now have <android>
<buildArchitectures>armv7,armv8</buildArchitectures>
</android>That setting was added to override IDEs that do not expose the newer packaging options. The docs say the default is So I would use one of these:
Docs:
|
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hello,
I am updating an existing HARMAN AIR / Adobe Animate based Android app, and I would like to support both 32-bit and 64-bit Android devices.
As far as I understand, HARMAN AIR / Adobe Animate only allows one processor target when publishing an Android APK:
So I cannot find a way to include both armeabi-v7a and arm64-v8a in the same APK.
My questions are:
Any advice would be greatly appreciated.
Best regards,
Yuki
All reactions