What is in your Application.mk ?

Here is what I have in mine:

APP_STL := gnustl_static

ifeq ($(APP_ABI),armeabi-v7a)
        APP_CFLAGS += -march=armv7-a -mfloat-abi=softfp -mfp=vfpv3-d16 -mfpu=vfp -marm -O3 -funroll-loops
else
    APP_CFLAGS := -marm -O3 -funroll-loops
endif

APP_CPPFLAGS += -frtti -fexceptions -fpermissive -ffast-math -fno-strict-aliasing

LDFLAGS='-Wl,--fix-cortex-a8'
APP_ABI := armeabi armeabi-v7a
APP_OPTIM := release

This is for production Androids, application that is live on Google Play.

If you see problems, I would love advice. If you have a different file that works, please post it so we can all have some sharing of these settings!

I’d be happy to answer any questions you have about my settings as well.

Thanks!

The game in question: