What's the exact significance of Android NDK platform version compared to API level?

后端 未结 1 613
北海茫月
北海茫月 2021-01-03 00:50

I have an Android app with minSdkVersion.apiLevel set to 18 targetSdkVersion.apiLevel set to 23. Accordingly I set the NDK platformVersion

相关标签:
1条回答
  • 2021-01-03 01:36

    This is exactly what will happen to your shared library when you install it on android-20 or earlier: it will fail to load. You should not be surprised that signal was missing: Android runtime was never intended to run command-line tools like curl.

    0 讨论(0)
提交回复
热议问题