We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d41f262 commit 593507fCopy full SHA for 593507f
1 file changed
example/android/build.gradle
@@ -42,5 +42,15 @@ allprojects {
42
}
43
44
45
+subprojects { subproject ->
46
+ subproject.plugins.withId("com.android.application") {
47
+ if (System.getProperty("os.name").toLowerCase().contains("windows")) {
48
+ subproject.android.defaultConfig.externalNativeBuild.cmake.arguments(
49
+ "-DCMAKE_OBJECT_PATH_MAX=128"
50
+ )
51
+ }
52
53
+}
54
+
55
rootProject.ext.set("react.compileSdkVersion", 36)
56
rootProject.ext.set("react.targetSdkVersion", 36)
0 commit comments