Ramz
Ramz

Reputation: 935

Detected problems with app native libraries

When I upgrade the target sdk version to 25 the following popup shows while working with the app

enter image description here

I couldn't find any proper solution on this issue. Any help would be appreciated.

Upvotes: 1

Views: 5646

Answers (1)

Elvis Xia - MSFT
Elvis Xia - MSFT

Reputation: 10841

If you refer to Xamarin Android 7.0, you can find the following statements:

Note: Due to a change by Google, Android N will now only permit linking to NDK-provided native libraries. libsqlite.so is not an NDK-provided native library. Consequently, existing apps using e.g. Mono.Data.Sqlite.dll will crash when running on Android N. This may include other SQLite-using assemblies, not distributed with Xamarin.Android.

But the latest sqlite-net-pcl 1.3.3 have already fixed the Android N native library problem. So to fix the issue, you need to update your Sqlite-net-pcl of your project to the latest version.

Upvotes: 1

Related Questions