Mac_如何通过命令行装包到ios手机
Posted 测试一枝花
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mac_如何通过命令行装包到ios手机相关的知识,希望对你有一定的参考价值。
前言
Mac通过命令行安装ipa包到ios手机,可以在终端通过第三方库libimobiledevice安装。libimobiledevice 是一个跨平台的软件库,支持 iPhone, iPod Touch, iPad and Apple TV等设备的通讯协议,不需要越狱。
安装libimobiledevice
1.
brew install -HEAD libimobiledevice
brew install ideviceinstaller
idevice_id -l
ideviceinstaller -i <ipa包路径> # 直接拖拽ipa包到终端即可获得路径
ideviceinstaller -u <设备号> -i <ipa包路径>
brew uninstall --ignore-dependencies libimobiledevice brew uninstall --ignore-dependencies ideviceinstaller brew uninstall --ignore-dependencies usbmuxd sudo rm /var/db/lockdown/* brew install --HEAD usbmuxd brew unlink usbmuxd brew link usbmuxd brew install --HEAD libimobiledevice brew install --HEAD ideviceinstaller
ideviceninstaller常用命令
备注:多设备连接时,可使用 “-u” 指定设备号,例(指定设备安装ipa包):ideviceinstaller -u <设备号> -i <ipa包路径>
查看连接设备
idevice_id -l # 可获得设备号
安装ipa包
ideviceinstaller -i <ipa包路径>
覆盖安装ipa包
ideviceinstaller -g <ipa包路径>
查看设备app信息
ideviceinstaller -l
卸载app
ideviceinstaller -l # 返回信息中获取目标app包名 ideviceinstaller -U <包名> # 卸载目标app
查看设备udid
idevice_id -l
以上是关于Mac_如何通过命令行装包到ios手机的主要内容,如果未能解决你的问题,请参考以下文章