Here is my Application.mk:
APP_ABI := armeabi-v7a APP_PLATFORM := android-16 APP_OPTIM := release APP_STL := gnustl_static APP_CPPFLAGS := -std=gnu++11
The value for APP_PLATFORM is android-16, so we can support Android OS version 4.1 and higher.
I know the application builds perfectly with APP_PLATFORM installed on android-16 . This means that I am not using any Android functionality that is newer than android-16 . What if I change it to android-19 ? Since I am not using any of the new Android features, I think the code should still work fine on OS 4.1. Please share your wisdom. Best wishes.
android android-ndk
Peter
source share