open:react-native-errors

16
down vote
accepted
This problem usually comes from gradle dependency in new components, i can see you have installed react-native-maps

you can solve it by cleaning the project.

In your React Native project:

cd android/ && ./gradlew clean

go back and try run it again.

cd .. && react-native run-android

In the root build.gradle file:

allprojects {
    buildDir = "C:/tmp/${rootProject.name}/${project.name}"
    repositories {
       ...
    }
}
  • open/react-native-errors.txt
  • 마지막으로 수정됨: 2020/06/02 09:25
  • 저자 127.0.0.1