Hello
I'm trying to generate a shared library for Android. Using the introducer, the generated files seem a bit flawed.
1. whatever I set as binary name, the generated libraries are always called libjuce_jni.so
2. if I add x86 to architectures in debug and release, I'd expect
APP_ABI := armeabi armeabi-v7a x86
to be added to Application.mk. It isn't. And only the armeabi lib gets built as long as I do not add that.
3. The builder doesn't specify a toolset version. So by default eclipse is using the 4.6 toolchain. I need 4.8 because of c++11, but that only works after adding
NDK_TOOLCHAIN_VERSION=4.8
to Application.mk.
All three items are easily adjusted manually, after which i can compile my library. But it's hardly an elegant solution since i have to redo them every time I save my project.
Regards,
yvan vander sanden