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.
Asked
Active
Viewed 270 times
-1
-
You just have to find your **Project** folder. Then voila! – Aditya May 25 '18 at 12:19
-
@HeisenBrg But how? I can't find it in react-native docs. – Michał Terczyński May 25 '18 at 12:20
-
Possible duplicate of [React Native iOS and Android folders not present](https://stackoverflow.com/questions/44270504/react-native-ios-and-android-folders-not-present) – Sachin Rajput May 25 '18 at 12:22
-
1How are you currently building your project if you don't know the path? – OneCricketeer May 25 '18 at 12:23
-
in which **folder** you used this command `react-native init project` ? – Aditya May 25 '18 at 12:23
-
I used create-react-native-app to generate this app(it was suggested in [docs](https://facebook.github.io/react-native/docs/getting-started.html)). When i use react-native init i have gradle. – Michał Terczyński May 25 '18 at 12:27
1 Answers
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