找不到 androidmanifest.xml

Can't find androidmanifest.xml

我正在开发 Visual Studio Cordova 项目,该项目适用于 Windows、iOS 和 Android,并正在寻找 AndroidManifest.xml 或构建设置文件,但找不到任何文件。我尝试构建它没有错误,但仍然找不到该文件。 where/what 我应该寻找什么建议?

应该在你的项目根里面platforms/android.

Cordova 在 platforms/android 中生成 AndroidManifest.xml,但每次重建都会重置它。如果您需要向其中添加一些数据,您将必须在 res/native/android 中创建自己的 AndroidManifest.xml,该 AndroidManifest.xml 将自动合并到 platforms/android.

中的数据

您可以在官方文档中阅读更多内容:https://msdn.microsoft.com/en-us/library/Dn757053.aspx