From 0f6f93ab3b2cf1c35d2f09d078b1d8416ad4e8ec Mon Sep 17 00:00:00 2001 From: Ruslan Baratov <ruslan_baratov@yahoo.com> Date: Sat, 15 Sep 2018 01:23:18 +0300 Subject: [PATCH] jenkins.py: Fix Android NDK location --- bin/detail/android_studio_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/detail/android_studio_build.py b/bin/detail/android_studio_build.py index e1b35cee..7d77e44d 100644 --- a/bin/detail/android_studio_build.py +++ b/bin/detail/android_studio_build.py @@ -53,7 +53,7 @@ def android_studio_build(): '_android_ndk' ) - android_ndk = os.path.join(os.getcwd(), '_android_ndk', 'android-ndk-r17') + android_ndk = os.path.join(os.getcwd(), '_android_ndk', 'android-ndk-r17c') android_sdk = os.path.join(os.getenv('USERPROFILE'), 'android-sdk') licenses_dir = os.path.join(android_sdk, 'licenses')