gpt4 book ai didi

ios - Cordova - 你能覆盖插件设置的 plist NSPhotoLibraryUsageDescription 值吗?

转载 作者:行者123 更新时间:2023-12-01 19:39:28 28 4
gpt4 key购买 nike

TLDR; 使用 Cordova,有没有办法覆盖插件可能设置的任何 Info.plist 值,例如 NSPhotoLibraryAddUsageDescription? (即可能有一个钩子(Hook)?)


许多 Cordova 插件尝试配置 plist 值,例如 NSPhotoLibraryUsageDescription。例如:

    <config-file target="*-Info.plist" parent="NSPhotoLibraryAddUsageDescription">
<string>Please authorize photo library to save pictures.</string>
</config-file>

<config-file target ="*-Info.plist" parent="NSPhotoLibraryUsageDescription">
<string>Please authorize photo library to save pictures.</string>
</config-file>

如果多个插件这样做,我们最终会在 platforms/ios/ios.json 中得到多个值,例如:

{
"prepare_queue": {
"installed": [],
"uninstalled": []
},
"config_munge": {
"files": {
"*-Info.plist": {
"parents": {
"NSPhotoLibraryUsageDescription": [
{
"xml": "<string>Send photos in your messages to the app.</string>",
"count": 1
},
{
"xml": "<string>We allow you to send us photos via our in-app messenger</string>",
"count": 144
}
],
...

这是有问题的,因为 Cordova 似乎只会将任何键 (NSPhotoLibraryUsageDescription) 的 last 项的值复制到 Info.plist 文件。

另一个问题是,在 config.xml 中自行设置这些设置不会优先于插件设置的设置。这仅取决于 platforms/ios/ios.json 中哪些值last

所以这里有两个问题:

  1. 插件可以提供错误的描述(例如 cordova-plugin-x-socialsharing 插件),这 Apple can reject you for

    然后你就无法覆盖我能看到的这个。

  2. 如果多个插件为同一个 Info.plist 值提供一个值,则只使用最后一个。这对我来说是个问题,因为您无法真正控制哪个是“最后一个”。

所以我的问题是 - 在 config.xml 或 Hook 中是否有办法提供将要使用的实际 Info.plist 设置?

(我目前使用的是 Cordova CLI 8.1.2)

最佳答案

您可以使用 cordova-custom-config覆盖 Cordova 插入的使用说明消息:自 cordova-custom-config将其更改(默认情况下)应用于 Cordova 的 after_prepare钩子(Hook),它将在之后执行,因此它的更改将优先。

将其安装到您的项目中:

cordova plugin add cordova-custom-config

然后定义一个<custom-config-file>阻止你的 config.xml ,例如:

<custom-config-file platform="ios" target="*-Info.plist" parent="NSPhotoLibraryUsageDescription">
<string>My override description</string>
</custom-config-file>

备注:cordova-plugin-x-socialsharing确实提供了一种机制来覆盖其自身的默认描述 - 它 defines <preference> s可以在插件安装期间使用变量覆盖,例如:

cordova plugin add cordova-plugin-x-socialsharing --variable PHOTO_LIBRARY_ADD_USAGE_DESCRIPTION="Some description" --variable PHOTO_LIBRARY_USAGE_DESCRIPTION="Some other description"

关于ios - Cordova - 你能覆盖插件设置的 plist NSPhotoLibraryUsageDescription 值吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56471213/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com