aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2020-03-30 13:28:16 -0700
committerElliott Hughes <enh@google.com>2020-03-30 13:28:16 -0700
commit8d12a56cc3e8888b6292fd356a101724a9099ee7 (patch)
tree9565e02e747f1e806cd4388ea1b7ff5b20a4dfe8
parent9c8fb8cedfd7474c837b75e2daf000754429721c (diff)
downloadrmi4utils-8d12a56cc3e8888b6292fd356a101724a9099ee7.tar.gz
Fix Application.mk.
Current versions of the NDK only have libc++, and no longer support the armeabi ABI (as opposed to armeabi-v7a, which is still supported). It's possible that the APP_ABI line should just be removed, leaving ndk-build to default to building for all supported ABIs, but for now I've kept it.
-rw-r--r--Application.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/Application.mk b/Application.mk
index 5dd4457..04ddf2b 100644
--- a/Application.mk
+++ b/Application.mk
@@ -1,4 +1,4 @@
APP_BUILD_SCRIPT := $(call my-dir)/Android.mk
-APP_STL := stlport_static
+APP_STL := c++_static
APP_PLATFORM := android-21
-APP_ABI := armeabi armeabi-v7a arm64-v8a \ No newline at end of file
+APP_ABI := armeabi-v7a arm64-v8a