-1

How can I view my compliated Android app folder in React-native? I'd like to view gradle config, but I can't find information anywhere how to get there.

Sachin Rajput
  • 4,326
  • 2
  • 18
  • 29

1 Answers1

1

If you are referencing the React Native documentation, it is likely that you created your application using the create-react-native-app CLI. If this is the case, you will need to eject your application in order to modify native code (npm run eject). Reference this page.

Alternatively, you can create a project using react-native init.

Charles Salmon
  • 467
  • 3
  • 12