Cordova iOS版本使用’edit-config’标记失败

Cordova iOS版本使用’edit-config’标记失败,第1张

概述我有一个Ionic 3应用程序(Ionic CLI 3.19.0,Cordova CLI 8.0.0, android平台7.0.0,  ios平台4.5.4)包含原生的“Geolocation”插件.由于iOS 10需要App-Info.plist文件中的NSLocationWhenInUseUsageDescription属性,因此插件的文档( Geolocation iOS Quirks)表 我有一个Ionic 3应用程序(Ionic Cli 3.19.0,Cordova Cli 8.0.0,android平台7.0.0,
 ios平台4.5.4)包含原生的“Geolocation”插件.由于iOS 10需要App-Info.pList文件中的NSLocationWhenInUseUsageDescription属性,因此插件的文档( Geolocation iOS Quirks)表示要在config.xml中包含以下内容:

<edit-config target="NSLocationWhenInUseUsageDescription" file="*-Info.pList" mode="merge">   <string>need location access to find things nearby</string></edit-config>

所以我将该逐字添加为< platform name =“ios”> …< / platform>中的第一个条目.我的config.xml的标签.

在构建的cordova iOS阶段,它失败并出现以下模糊错误:

(node:60604)UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection ID: 1): TypeError: doc.find is not a function

(node:60604) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future,promise rejections that are not handled will terminate the Node.Js process with a non-zero exit code.

解决方法 如上面的评论所述,所需的步骤是:

>删除平台ios:cordova平台删除ios
>将edit-config添加到platform name =“ios”标记

< platform name =“ios”>在这里添加我< / platform>>运行准备ios:离子cordova准备ios

总结

以上是内存溢出为你收集整理的Cordova iOS版本使用’edit-config’标记失败全部内容,希望文章能够帮你解决Cordova iOS版本使用’edit-config’标记失败所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1000731.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存