From b19c0d94303f6cc0ec564f2fdc42f9c80f24034b Mon Sep 17 00:00:00 2001 From: LeoTM <1881059+leotm@users.noreply.github.com> Date: Tue, 19 Jul 2022 18:07:54 +0100 Subject: [PATCH] Fix app/build.gradle error Revert previous change in comment for now --- android/app/build.gradle | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 11de83e94..3cf044e1c 100755 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -160,9 +160,10 @@ android { // src/main/jni/Android.mk file for the `LOCAL_MODULE` variable. targets "leotm_myapp_appmodules" // Fix for windows limit on number of character in file paths and in command lines - if (Os.isFamily(Os.FAMILY_WINDOWS)) { - arguments "NDK_APP_SHORT_COMMANDS=true" - } + // Atm causing: Could not get unknown property 'Os' for object of type com.android.build.gradle.internal.dsl.ExternalNativeNdkBuildOptions + // if (Os.isFamily(Os.FAMILY_WINDOWS)) { + // arguments "NDK_APP_SHORT_COMMANDS=true" + // } } } if (!enableSeparateBuildPerCPUArchitecture) {