From 8c76e753bea2685b9549e0da28fd2995a26619c2 Mon Sep 17 00:00:00 2001 From: assiduous Date: Sun, 3 Jan 2021 16:21:33 -0800 Subject: Reverted local changes to build.gradle --- NativeApp/Android/build.gradle | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'NativeApp/Android') diff --git a/NativeApp/Android/build.gradle b/NativeApp/Android/build.gradle index f6cf7c1..0cb0011 100644 --- a/NativeApp/Android/build.gradle +++ b/NativeApp/Android/build.gradle @@ -4,7 +4,6 @@ apply from: "android_common.gradle" // The arcore aar library contains the native shared libraries. These are // extracted before building to a temporary directory. def arcore_libpath = "${buildDir}/arcore-native" -def ndk_dir = android.ndkDirectory android { defaultConfig { @@ -14,7 +13,7 @@ android { } externalNativeBuild { cmake { - arguments "-DANDROID_TOOLCHAIN=clang", "-DANDROID_STL=c++_static", "-DARCORE_LIBPATH=${arcore_libpath}/jni", "-DARCORE_INCLUDE=${project.projectDir}/arcore_sdk/include", "-DPYTHON_EXECUTABLE=C:/Users/Egor/AppData/Local/Programs/Python/Python36/python.exe" + arguments "-DANDROID_TOOLCHAIN=clang", "-DANDROID_STL=c++_static", "-DARCORE_LIBPATH=${arcore_libpath}/jni", "-DARCORE_INCLUDE=${project.projectDir}/arcore_sdk/include" } } } @@ -30,12 +29,6 @@ android { sourceSets { main { java.srcDirs = ['src/main/java', 'ndk_helper/src/java'] - jniLibs { - // Gradle includes libraries in the following path as dependencies - // of your CMake or ndk-build project so that they are packaged in - // your app's APK. - srcDir "${ndk_dir}/sources/third_party/vulkan/src/build-android/jniLibs" - } } } -- cgit v1.2.3