我想从服务器下载ipa文件并以编程方式安装。我也想在android上做同样的事情,我已经找到了一种方法。
安卓:http://bpsinghrajput.blogspot.in/2012/07/how-to-download-and-install-apk-from.html
IOS:?
你能帮帮我吗?
致以敬意,
Sneh
发布于 2016-06-15 21:10:39
您不能从iOS中以编程方式安装IPA(在未越狱的设备上)。
其他一些选项包括:
发布于 2019-07-16 02:23:32
为此,您可以使用ideviceinstaller。这个github要点有几个例子
https://gist.github.com/githubutilities/91ba27c2f5a135dce1a2#file-ios-hacks-md
# list installed app on the connected device
# it also lists the identifier of the installed packages
ideviceinstaller -l
# install ipa
ideviceinstaller -i <your-package.ipa>
# uninstall app
ideviceinstaller -U <your-app-id>
https://stackoverflow.com/questions/37827993
复制相似问题