Android NDK Support Version Limited -
i have used android ndk years, however, recently, saw message below when built cpps using ndk-build(ndk version 15)
android ndk: android-9 unsupported. using minimum supported version android-14. android ndk: warning: app_platform android-14 higher android:minsdkversion 9
why ndk stop supporting android levels(3-13) lower android-14?
i tried find out why @ ndk guides, https://developer.android.com/ndk/guides/stable_apis.html although still have no idea. seems ndk still supports higher or equal level 3.
i guessed 1 of flags or features need in c++ may cause this. however, not find clue far.
local_cpp_features := rtti exceptions app_cppflags += -std=c++11 app_stl := gnustl_static
don't update ndk version 15 if apps should run on android-9
according ndk revision history (https://developer.android.com/ndk/downloads/revision_history.html),
android 2.3 (android-9) no longer supported. minimum api level target in ndk android 4.0 (android-9). if app_platform set lower android-14, android-14 used instead.
Comments
Post a Comment