问题
I used react-native init to create my react application. I'm trying to tie in auth0 and auth0 documentation is saying I need something from the androidManafest.xml. The problem is that the react-native init didn't create "android/app/src/main/AndroidManifest.xml " during the process. How does this get created and tie into my react-native app?
回答1:
I am doing the same thing and had to hunt around for it, but after I did a react-native run-android
I found that very file in the following folder: android
> app
> src
> main
.
回答2:
React-native init generates this. It's easiest to find and manipulate this through android studio. If it doesn't create it... the process failed somewhere.
来源:https://stackoverflow.com/questions/45061034/how-to-generate-androidmanifest-xml-from-a-react-native-app-created-with-react-n