ios - 父标签有什么用
我更新了一个 iOS 应用程序,但它被以下电子邮件拒绝
缺少 Info.plist 键 - 此应用程序尝试在没有使用说明的情况下访问隐私敏感数据。应用的 Info.plist 必须包含一个 NSPhotoLibraryUsageDescription 键和一个字符串值,向
问问题
5236 次
2 回答
3
在您config.xml
作为<platform name="ios">
添加的子节点中:
<edit-config target="NSPhotoLibraryUsageDescription" file="*-Info.plist" mode="merge">
<string>need to photo library access to get pictures from there</string>
</edit-config>
于 2018-01-27T02:21:24.187 回答
2
在需要此插件的PLUGIN.XML文件中的PLATFORM标记下使用config-file而不是edit-config :
<platform name="ios">
<preference name="CAMERA_USAGE_DESCRIPTION" default=" " />
<config-file target="*-Info.plist" parent="NSCameraUsageDescription">
<string>Need camera access to take pictures</string>
</config-file>
<preference name="PHOTOLIBRARY_USAGE_DESCRIPTION" default=" " />
<config-file target="*-Info.plist" parent="NSPhotoLibraryUsageDescription">
<string>Need to photo library access to get pictures from there</string>
</config-file>
</platform>
于 2018-01-26T08:00:33.820 回答
我更新了一个 iOS 应用程序,但它被以下电子邮件拒绝
缺少 Info.plist 键 - 此应用程序尝试在没有使用说明的情况下访问隐私敏感数据。应用的 Info.plist 必须包含一个 NSPhotoLibraryUsageDescription 键和一个字符串值,向
问问题
5236 次
2 回答
3
在您config.xml
作为<platform name="ios">
添加的子节点中:
<edit-config target="NSPhotoLibraryUsageDescription" file="*-Info.plist" mode="merge">
<string>need to photo library access to get pictures from there</string>
</edit-config>
于 2018-01-27T02:21:24.187 回答
2
在需要此插件的PLUGIN.XML文件中的PLATFORM标记下使用config-file而不是edit-config :
<platform name="ios">
<preference name="CAMERA_USAGE_DESCRIPTION" default=" " />
<config-file target="*-Info.plist" parent="NSCameraUsageDescription">
<string>Need camera access to take pictures</string>
</config-file>
<preference name="PHOTOLIBRARY_USAGE_DESCRIPTION" default=" " />
<config-file target="*-Info.plist" parent="NSPhotoLibraryUsageDescription">
<string>Need to photo library access to get pictures from there</string>
</config-file>
</platform>
于 2018-01-26T08:00:33.820 回答