I have android (xamarin) program, which uses my own C++ program compiled as native library. On SDK22 and some Samsung devices all goes well, but on Huawei with SDK23 and arm64-v8a processor not. Application crashes with library not found exception.
Could anyone help me how to compile native library in Eclipse for ARM64-v8a? I am using c:\android-ndk-r10e\ndk-build.cmd -j8
command with APP_ABI := arm64-v8a
parameter in android.mk file. Output compiled library .so is same as with or without APP_ABI := arm64-v8a
parametter.