From 43f57b2f25e2fee4fc0dcc5dd5f4884b277113f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20D=C3=BCrrenberger?= Date: Thu, 11 Oct 2018 21:50:38 +0200 Subject: [PATCH] Disabled the JNI part due to compatibility issues --- examples/android/app/src/main/jni/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/android/app/src/main/jni/main.cpp b/examples/android/app/src/main/jni/main.cpp index e5445b5ba..edf67b453 100644 --- a/examples/android/app/src/main/jni/main.cpp +++ b/examples/android/app/src/main/jni/main.cpp @@ -6,7 +6,8 @@ // Do we want to showcase direct JNI/NDK interaction? // Undefine this to get real cross-platform code. -#define USE_JNI +// Uncomment this to try JNI access; this seems to be broken in latest NDKs +//#define USE_JNI #if defined(USE_JNI) // These headers are only needed for direct NDK/JDK interaction