How does JetBrains AppCode launch the iOS Simulator?

前端 未结 6 1949
故里飘歌
故里飘歌 2021-01-30 18:48

I just looked at JetBrains\'s App Code IDE and it seems to be able to launch the iOS Simulator and run applications in it.

When I had to automate the deployment of my pr

6条回答
  •  逝去的感伤
    2021-01-30 19:22

    What exactly do you want to automate? Installing app and launching it in simulator or device?

    About "3":

    AMDeviceService is just some daemon which is responsible for any interaction with device. It uses only /System/Library/PrivateFrameworks/MobileDevice.framework library(it's private). It doesn't know about any /Developer stuff (of course if you are not going to debug on device).

    This service deploys app on device, mounts developer image, browses apps on device and starts debugserver.

    It uses Google Protocol Buffers based protocol to communicate with AppCode. Not Apple-stuff.

提交回复
热议问题