Unable to determine abi from native library in Xamarin.Android

I use a third-party .jar, for which I created a binding project that compiles correctly .. jar uses the .so native library for most of its functionality. I can not get this to be installed .apk. When deploying, I get an error message: Cannot determine abi of native library MainActivity.cs . I added .so files to my respective folders with the ability to build as a native Android library, and also, as always, copy. My target platform is Android 4.1 and the xamarin-studio version is 5.9.4.

enter image description here

+6
source share
1 answer

Clear unsupported SO files from the obj library project> (debug | release)> import libraries> jni and the same action for the main project project> obj> import libraries> library> import library projects> jni

0
source

All Articles