Is it currently impossible to run a androidNative3...
# kotlin-native
j
Is it currently impossible to run a androidNative32/androidNative64 under the android emulator? I mean sure it seems logical because the arch targeted is ARM, but what to do if I need to test a native library in the emulator?
s
It is possible (at least) using
adb
. See Android Native Activity sample README for an example: https://github.com/JetBrains/kotlin-native/blob/master/samples/androidNativeActivity/README.md
j
Yeah.. I dont think that is what I'm after. However that link does state:
deploy the apk on the Android device or emulator (note that only ARM-based devices are currently supported).
Which does bring up the problem, later emulator devices runs intel arch
and not arm
s
It must be possible to configure the emulator to emulate arm arch using AVD.
j
You might be correct. I guess that should be enough for what i'm after
You can not do that for API 26-28 as of yet, but I think I'll do fine with API 25
Thanks for the help
s
I see, thank you for clarification.