ios cordova,无法在共享菜单中添加应用

ios cordova, cannot add app in share menu

我试着按照这个 ,但没有成功。

我的应用程序图标没有出现在 ios 的共享菜单中。

你能确认应用程序安装后立即出现应用程序图标吗? 有没有办法记录或测试这种行为?

这是我用来生成 Info.plist 的 config.xml 部分(可以,通过解压缩 ipa 并检查文件来验证):

    <config-file platform="ios" target="*-Info.plist" parent="UIFileSharingEnabled">
        <true />
    </config-file>

    <config-file platform="ios" target="*-Info.plist" parent="CFBundleDocumentTypes">
        <array>
            <dict>
                <key>CFBundleTypeIconFiles</key>
                <array>
                    <string>icon-small</string>
                </array>
                <key>CFBundleTypeName</key>
                <string>AppName</string>
                <key>CFBundleTypeRole</key>
                <string>Viewer</string>
                <key>LSHandlerRank</key>
                <string>Alternate</string>
                <key>LSItemContentTypes</key>
                <array>
                    <string>public.image</string>
                </array>
            </dict>
        </array>
    </config-file>

此致,奥利维尔。

错误是该应用不会仅出现在照片共享列表中。

照片应用似乎是原因,而不是 Info.plist 声明。

如果我找到解决此问题的方法,我会记录这个答案。

此致,奥利维尔