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 that we can support Android OS version 4.1 and above.
I know that the app builds fine withAPP_PLATFORM
set toandroid-16
. It implies that I am not using any Android functionality that is newer thanandroid-16
. What if I change it toandroid-19
? As I am not using any newer Android functionality, I am thinking the code should still work fine on OS 4.1. Please share your wisdom. Regards.