如何在 OTA 安装 IPA 文件期间绕过完整性错误?

问题描述

我目前正在开展一个项目,该项目允许我将 IPA (iOS) 文件上传到 s3 存储桶,以便使用空中下载 (OTA) 将它们安装在我的 iPhone 上。

index.html 文件包含以下链接:

<a href="itms-services://?action=download-manifest&;url=https://s3-eu-west-3.amazonaws.com/ipapk-ipa/plist.xml" class="mdl-button mdl-button--raised mdl-button--colored mdl-js-button mdl-js-ripple-effect">Install</a>

这里是 plist.xml 文件:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>items</key>
    <array>
        <dict>
            <key>assets</key>
            <array>
                <dict>
                    <key>kind</key>
                    <string>software-package</string>
                    <key>url</key>
                    <string>https://s3-eu-west-3.amazonaws.com/ipapk-ipa/DVIA.ipa</string>
                </dict>

                <dict>
                    <key>kind</key>
                    <string>display-image</string>
                    <key>needs-shine</key>
                    <true/>
                    <key>url</key>
                    <string>https://s3-eu-west-3.amazonaws.com/ipapk-ipa/DVIA.ipa.png</string>
                </dict>
            </array>
            <key>metadata</key>
            <dict>
                <key>bundle-identifier</key>
                <string>com.highaltitudehacks.DVIAswiftv2</string>
                <key>bundle-version</key>
                <string>1</string>
                <key>kind</key>
                <string>software</string>
                <key>title</key>
                <string>DVIA-v2</string>
            </dict>
        </dict>
    </array>
</dict>
</plist>

当我点击安装按钮时,应用程序开始安装,但出现“无法安装此应用程序,因为无法验证其完整性

你有什么想法吗? PS:我在使用 https://www.diawi.com/

等工具时遇到了同样的错误

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...