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

时间:2016-05-03 14:01:23

标签: ios cordova info.plist

我试图遵循这个thread,但没有成功。

我的应用程序图标未显示在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>

最好的问候,奥利维尔。

1 个答案:

答案 0 :(得分:0)

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

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

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

问候,奥利维尔