A wrapper around idb to communicate with iOS devices.
To test on iOS devices you need to install Facebook's idb tool.
Install Xcode 13 (command line tools are not enough, install the full IDE).
If you are working with this module, update your IntelliJ config (Help -> Edit Custom Properties) by including the following lines:
# Needed for working with idb.proto definition
idea.max.intellisense.filesize=4000
Restart the IDE
- List the devices with
idb_companion --list 1
- Pick a simulator from the list and note its UDID
- Launch the simulator with
idb_companion --boot {udid}
- Connect to the simulator with
idb_companion --udid {udid}
You are good to go!