My React Native app works with import errors. I have done everything needed to fix the errors, although Android Studio still says there are errors, even though my app builds and runs successfully.
Does anyone know how to remove these false errors?
My React Native app works with import errors. I have done everything needed to fix the errors, although Android Studio still says there are errors, even though my app builds and runs successfully.
Does anyone know how to remove these false errors?
Import errors created by gradle default usually, please check your gradle.build. Make sure you have
On some cases, you manually import the files, so check the files if you manual import the files to your project.
Maybe you need to see this tutorial to setup your gradle: https://facebook.github.io/react-native/docs/building-from-source
Thanks.