前言:ideviceinstaller 是一个命令行工具,主要用于管理iOS设备上应用程序的安装与卸载,以及查看相关信息。
【查看是否安装】:终端输入 ideviceinstaller ,如提示下图,表示已经安装,如提示命令not found,则没有安装;
【安装ideviceinstaller工具】
1.终端输入:brew install --HEAD libimobiledevice
2.终端输入:brew install ideviceinstaller
常用命令如下:
1.安装程序
ideviceinstaller -i [.ipa文件]
2.查看已安装程序
ideviceinstaller -l
3.卸载程序
ideviceinstaller -U [appId]
4.查看设备udid
idevice_id -l
如果电脑连接了多台设备,以上查看、安装及卸载程序的命名均需要通过 -o [udid] 参数来指定设备,如
ideviceinstaller -i [ipa文件] -o [设备udid]
ideviceinstaller -l -o [设备udid]
ideviceinstaller -U [appId] -o
附:
如果输入命令遇到 “Could not connect to lockdownd. Exiting. ”这个问题,可以尝试以下两种解决方法:
方法一:
sudo chmod -R 777 /var/db/lockdown/
再次执行命名,如果问题还在,请用方法二;
方法二:
https://www.cnblogs.com/lily-20141202/p/10404377.html
1、尝试修改权限::
sudo chmod -R 777 /var/db/lockdown/
失败。。。
2、尝试网上最多的解决方案::
brew uninstall ideviceinstaller -g
brew uninstall libimobiledevice -g
brew install --HEAD libimobiledevice -g
brew install ideviceinstaller -g
直接报错。。。。失败
3、再次尝试一下方案,其中一种成功解决了我的问题:
方法一:
brew install --HEAD ios-webkit-debug-proxy -g
brew install ios-webkit-debug-proxy -g
。。。还是失败
方法二:brew uninstall -f libimobiledevice ideviceinstaller usbmuxd如果命令被拒绝,可根据提示,更新命令:
brew uninstall --ignore-dependencies libimobiledevice ideviceinstaller usbmuxd
?这次命令是成功了
?然后继续:
brew install -v --HEAD --fetch --build-from-source usbmuxd libimobiledevice ideviceinstaller
??
ideivesinstaller -l
大功告成,终于出结果了。。
感谢博主,尽管fetch写错了?:https://blog.csdn.net/zy841958835/article/details/78622146
方法一:
brew install --HEAD ios-webkit-debug-proxy -g
brew install ios-webkit-debug-proxy -g
。。。还是失败
方法二:brew uninstall -f libimobiledevice ideviceinstaller usbmuxd如果命令被拒绝,可根据提示,更新命令:
brew uninstall --ignore-dependencies libimobiledevice ideviceinstaller usbmuxd
?这次命令是成功了
?然后继续:
brew install -v --HEAD --fetch --build-from-source usbmuxd libimobiledevice ideviceinstaller
??
ideivesinstaller -l
大功告成,终于出结果了。。
感谢博主,尽管fetch写错了?:https://blog.csdn.net/zy841958835/article/details/78622146
方法三:
先卸载
brew uninstall ideviceinstaller
brew uninstall libimobiledevice
再安装
brew install --HEAD libimobiledevice
brew install ideviceinstaller
查看模拟器:
instruments -s devices
启动模拟器:
xcrun instruments -w ‘iPhone 6s (9.3)’
xcrun instruments -w ‘iPhone X’
转载:https://blog.csdn.net/Lele_MM/article/details/95335757