Install and debug iPhone apps from the command line, without using Xcode
Перейти к файлу
Zoltan Varga ed094a8297 Print out the device support directory paths we are trying to help diagnose issues. 2017-01-03 20:46:08 -05:00
.gitignore Update ignored files 2012-10-17 22:31:22 +02:00
Entitlements.plist Initial commit 2011-09-16 15:07:57 +01:00
Info.plist Initial commit 2011-09-16 15:07:57 +01:00
LICENSE Initial commit 2011-09-16 15:07:57 +01:00
Makefile Avoid building the demo app. 2014-10-17 21:57:21 -04:00
MobileDevice.h Initial commit 2011-09-16 15:07:57 +01:00
README.md Update README with new commands 2012-10-10 12:21:48 +02:00
ResourceRules.plist Initial commit 2011-09-16 15:07:57 +01:00
demo.c A combination of fixes and new features for fruitstrap. 2012-02-28 11:51:01 -05:00
fruitstrap.c Print out the device support directory paths we are trying to help diagnose issues. 2017-01-03 20:46:08 -05:00

README.md

fruitstrap

Install and debug iPhone apps without using Xcode. Designed to work on unjailbroken devices.

Requirements

  • Mac OS X. Tested on Snow Leopard only.
  • You need to have a valid iPhone development certificate installed.
  • Xcode must be installed, along with the SDK for your iOS version.

Usage

fruitstrap [-q/--quiet] [-t/--timeout timeout(seconds)] [-v/--verbose] <command> [<args>]

Commands available:

  • install [-i/--id device_id] -b/--bundle bundle.app [-a/--args arguments]: Install the specified app with optional arguments to the specified device, or all attached devices if none are specified.

  • uninstall [-i/--id device_id] -b/--bundle bundle.app: Removed the specified bundle identifier (eg com.foo.MyApp) from the specified device, or all attached devices if none are specified.

  • list-devices: List all attached devices.

  • debug [-w/--wait] [-n/--no-mount] [-b/--bundle bundle.app [-a/--args arguments] Debug the app with the specified bundle identifier. Optional wait instead of running gdb automatically. Opt-out of mounting the developer image.

Demo

  • The included demo.app represents the minimum required to get code running on iOS.
  • make install will install demo.app to the device.
  • make debug will install demo.app and launch a GDB session.

Notes

  • With some modifications, it may be possible to use this without Xcode installed; however, you would need a copy of the relevant DeveloperDiskImage.dmg (included with Xcode). GDB would also run slower as symbols would be downloaded from the device on-the-fly.