0
0
mirror of https://github.com/markusfisch/BinaryEye.git synced 2024-09-20 03:52:16 +02:00

Set ANDROID_NDK_HOME to nothing in gradlew

This is quite a hack to ensure this app builds *without* the NDK
because using the NDK will produce broken builds for Android 6.

For details see:
https://github.com/markusfisch/BinaryEye/issues/111

Unfortunately, it's (currently) not possible to configure Gradle
to simply ignore the NDK. `nkd.dir` cannot be set to nothing or
an invalid value.
This commit is contained in:
Markus Fisch 2020-07-04 14:09:57 +02:00
parent fa3cc8c408
commit c42ad7dbea

4
gradlew vendored
View File

@ -1,5 +1,9 @@
#!/usr/bin/env sh
# ensure this app builds *without* the NDK because using the NDK will
# produce broken for Android 6
export ANDROID_NDK_HOME=
##############################################################################
##
## Gradle start up script for UN*X