当前位置 : 主页 > 手机开发 > cordova >

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

来源:互联网 收集:自由互联 发布时间:2021-06-10
我有一个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属性,因此插件的
我有一个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

网友评论