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’标记失败所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)