From 1e323dc1b772a42470939ab53ad295b3bc786e30 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Mon, 27 Jul 2015 17:46:06 +0200 Subject: [PATCH] android: Keep NDK API level at 19 The headers/libraries changed a lot with level 21 so that our app won't run on devices with Android < 5 when built against it. We currently don't need any new native APIs so that should be fine. --- src/frontends/android/jni/Application.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontends/android/jni/Application.mk b/src/frontends/android/jni/Application.mk index cdfb47400..9fa668354 100644 --- a/src/frontends/android/jni/Application.mk +++ b/src/frontends/android/jni/Application.mk @@ -1,2 +1,3 @@ # select the ABI(s) to build for (see CPU-ARCH-ABIS.html in the NDK docs). APP_ABI := armeabi x86 mips +APP_PLATFORM := android-19