Go to file
Cory McWilliams 91e9185dbe A combination of fixes and new features for fruitstrap.
* Ability to pass command-line arguments to the running application.
* Fiddled with the device support path discovery so that it works for me with XCode 4.3 on Lion.
* Fixed some bugs with write_gdb_prep_cmds (the string replace on dcp_noprivate with an incorrect length lead to a frequent crash).
* Fill in address.sun_len to make a warning go away.
* Handled gdb exiting slightly more gracefully.
* Closed device control sessions when we don't need them.  These sessions timing out lead to frequent failures the next time they were used.
* Added some getopt argument parsing.
* Added verbose and timeout (timeout for connecting to device) arguments.
2012-02-28 11:51:01 -05:00
.gitignore Added build products to ignore file 2011-11-05 13:49:35 +11:00
demo.c A combination of fixes and new features for fruitstrap. 2012-02-28 11:51:01 -05:00
Entitlements.plist Initial commit 2011-09-16 15:07:57 +01:00
fruitstrap.c A combination of fixes and new features for fruitstrap. 2012-02-28 11:51:01 -05: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 Initial commit 2011-09-16 15:07:57 +01:00
MobileDevice.h Initial commit 2011-09-16 15:07:57 +01:00
README.md Updated readme with new device_id argument. 2011-11-04 11:10:38 +01:00
ResourceRules.plist Initial commit 2011-09-16 15:07:57 +01:00

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 [-d] <app> [device_id]
  • Optional -d flag launches a remote GDB session after the app has been installed.
  • <app> must be an iPhone application bundle, not an IPA.
  • Optional device id, useful when you have more than one iPhone/iPad connected to your computer

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.