问题描述
我使用 react-native init 来创建我的 React 应用程序.我正在尝试绑定 auth0,而 auth0 文档说我需要来自 androidManafest.xml 的一些东西.问题是 react-native init 在此过程中没有创建android/app/src/main/AndroidManifest.xml".这是如何创建并绑定到我的 react-native 应用程序的?
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?
推荐答案
我正在做同样的事情并且不得不四处寻找它,但是在我做了一个 react-native run-android
之后我在以下文件夹中找到该文件:android
> app
> src
> main
.
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
.
这篇关于如何从使用 react-native init 创建的 react-native 应用程序生成 AndroidManifest.xml的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!