Nickmccomb
Nickmccomb

Reputation: 1527

React Native app works on Android with import 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?

errors

Upvotes: 0

Views: 123

Answers (1)

antonio yaphiar
antonio yaphiar

Reputation: 490

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.

Upvotes: 1

Related Questions