Skip to content

Commit 98473f8

Browse files
committed
fix: drop CMake version requirements
1 parent cf5b1fd commit 98473f8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/react-native-reanimated/android/build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,10 @@ android {
270270
}
271271
externalNativeBuild {
272272
cmake {
273-
version = System.getenv("CMAKE_VERSION") ?: "3.22.1"
273+
// We'll let the build system to resolve the version of CMake
274+
// but keeping this here as a reminder that you should actually
275+
// match the version being used in the React Native repo
276+
// version = System.getenv("CMAKE_VERSION") ?: "3.22.1"
274277
path "CMakeLists.txt"
275278
}
276279
}

0 commit comments

Comments
 (0)