Question

I'm trying to build apk for armeabi and armv7a architectures. I'm using following parameters for this.

 TARGET_ARCH_ABI=armeabi UNIVERSAL_APK=yes CHILD_ARCH_ABIS=armv7a BUILD=release EXPANSION_FILES=yes EXPANSION_FILES_BUNDLE=yes apportable

It's builds fine. But after upload to play store it detects only armeabi. Is it possible build apk for two architectures?

Was it helpful?

Solution

In last apportable version (release_1.1.10) it works perfect

 TARGET_ARCH_ABI=armeabi UNIVERSAL_APK=yes CHILD_ARCH_ABIS=armv7a,x86 BUILD=release EXPANSION_FILES=yes EXPANSION_FILES_BUNDLE=yes apportable
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top