From 4b534ba90c4747bdbf9a5f0d4f08404ef2d87703 Mon Sep 17 00:00:00 2001 From: Remy Baratte Date: Fri, 5 May 2023 11:40:55 +0200 Subject: [PATCH] Updated build.gradle to prevent conflicts This fixes some compilation issues I had with an older project due to conflicts caused by including Unity libraries in both projects. --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index 60d860f..d17ca4e 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -57,5 +57,5 @@ dependencies { //noinspection GradleDynamicVersion implementation "com.facebook.react:react-native:+" // From node_modules implementation project(':unityLibrary') - implementation files("${project(':unityLibrary').projectDir}/libs/unity-classes.jar") + implementation ':unity-classes' }