Simulator 上安装ipa文件

注: 若电脑上存在多个版本xcode,要先选择xcode版本
  sudo xcode-select -s /Applications/Xcode-9.4.1.app/Contents/Developer/

1、解压ipa文件
2、cd到Payload文件中,文件中包含着xxx.app文件
3、列出所有可用的设备

  xcrun instruments -s

4、开启指定模拟器

  xcrun instruments -w "iPhone 7 (10.3.1)"

5、安装.app文件

  xcrun simctl install booted 

6、运行相应的app

  xcrun simctl launch booted 

7、卸载app

  xcrun simctl uninstall booted 

暂未解决问题:安装到Simulator后打不开应用o(╥﹏╥)o
没错,刚才的一切花里胡哨操作,都没啥用了~

你可能感兴趣的:(Simulator 上安装ipa文件)