0
0
mirror of https://github.com/OpenVPN/openvpn3.git synced 2024-09-20 04:02:15 +02:00
openvpn3/vars/android-sdk-path
Antonio Quartulli e143bc0a7e [OVPN3-129] android: improve build system in order to perform full build
the scripts/android/build-all script is now in charge of
performing all the steps required to build a full android core.

Signed-off-by: Antonio Quartulli <antonio@openvpn.net>
2017-12-22 17:59:39 +08:00

7 lines
222 B
Plaintext

# setup PATH for Android SDK and NDK
[ -z "$SDK" ] && export SDK=$DEP_DIR/android-sdk
[ -z "$NDK" ] && export NDK=$SDK/ndk-bundle
if [ "$NO_MOD_PATH" != "1" ]; then
export PATH="$SDK/tools:$SDK/platform-tools:$PATH"
fi