I am writing a script to test a large quantity of apks. Some run on x86 and some run on arm. Is there a way I can tell which apks are intended for which architecture?
I have looked through the report on aapt badging with aapt dump badging application.apk
. For some of the arm compatible versions I see native-code: 'armeabi-v7a'
but not for all of them, and I don't see any indication of what architecture the x86 compatible apks run on.
I have also tried using apktool to break apart the apk and examine the AndroidManifest.xml. I don't see anything pertaining to the chip architecture in it either.
I'm looking for something on a linux platform.
Any ideas?