react-native-reanimated:configureCMakeDebug[arm64-v8a] error after install react-native-vision-camera

7.5k Views Asked by At

After the install of react-native-vision-camera there is this error that shows up. I've tried to downgrade the versions but again i can the same error.

Error: react-native-reanimated:configureCMakeDebug[arm64-v8a] FAILED

Deprecated Gradle features were used in this build, making it incompatible with Gradle 8.0.

You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins.

See https://docs.gradle.org/7.5.1/userguide/command_line_interface.html#sec:command_line_warnings 76 actionable tasks: 5 executed, 71 up-to-date

FAILURE: Build completed with 2 failures.

1: Task failed with an exception.

  • What went wrong: Execution failed for task ':react-native-reanimated:configureCMakeDebug[arm64-v8a]'.

[CXX1405] error when building with cmake using node_modules\react-native-reanimated\android\CMakeLists.txt: Build command failed.

And these are the versions i use:

"react": "18.1.0",
"react-native": "^0.70.4",
"react-native-reanimated": "^2.10.0",
"react-native-vision-camera": "^2.14.1"

Thanks in advance!

4

There are 4 best solutions below

0
On

Run the following based on your build, you might not need the pod install.

  • watchman watch-del-all

  • yarn cache clean --force
  • 
npm cache clean --force # optional - in case you have used npm
  • 
rm -rf node_modules/
rm yarn.lock
  • 
rm package-lock.json # optional - in case you have used npm

  • rm -rf $TMPDIR/metro-*

  • rm -rf $TMPDIR/haste-*
  • 
yarn install / npm install
  • 
yarn start --reset-cache
  • cd ios && rm -rf Podfile.lock && rm -rf Pods/ && pod install --verbose
0
On

I recently faced this problem, here are the steps I followed to solve it:

  1. I updated react-native version from 0.70.5 to 0.70.6
  2. I made sure to update react-native-reanimated and react-native-vision-camera versions as follows:
"react-native-reanimated": "^2.13.0",
"react-native-vision-camera": "^2.15.2",
  1. To avoid the error mentioned in this post, I added the following code in android/build.gradle as mentioned here:
allprojects {
repositories {
   // ...
   exclusiveContent {
      filter {
          includeGroup "com.facebook.react"
      }
      forRepository {
          maven {
              url "$rootDir/../node_modules/react-native/android"
          }
      }
  }
}
  1. I cleared caches in ./android folder with gradlew clean command
  2. And finally I rebuild the app with yarn run android command
0
On

I today faced this problem, here are the steps I followed to solve it:

  1. Changed package versions

    • "react-native-reanimated": "2.10.0"
    • "react-native-vision-camera": "2.14.1"
  2. Run in root folder rm -rf node_modaules and yarn or npm install

  3. And added this lines in file ./android/build.gradle enter image description here enter image description here

  4. In android folder run: ./gradlew clean and after that run any commands (./gradlew bundleRelease, ./gradlew assembleRelease)

1
On
"react-native-vision-camera": "^2.15.2",
"react-native-reanimated": "^2.12.0",

change your package.json