Go to file
Shazron Abdullah 1fe3ce5244 Updated README
2013-10-22 14:01:00 -07:00
.gitignore Ignore .DS_Store 2013-05-10 16:51:14 -07: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
Info.plist Initial commit 2011-09-16 15:07:57 +01:00
ios-deploy.c Use lldv instead of gdb debugger 2013-10-22 13:54:23 -07:00
LICENSE Update LICENSE 2013-04-30 12:34:33 -07:00
Makefile v1.0.3 - support npm uninstall 2013-07-29 15:52:34 -07:00
MobileDevice.h Interim checkin for issue #5 to make it compile (still has runtime errors IndexError: list index out of range) 2013-09-19 14:31:56 -07:00
package.json v1.0.3 - support npm uninstall 2013-07-29 15:52:34 -07:00
README.md Updated README 2013-10-22 14:01:00 -07:00
ResourceRules.plist Initial commit 2011-09-16 15:07:57 +01:00

ios-deploy

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

./ios-deploy [OPTION]... -d, --debug launch the app in GDB after installation -i, --id <device_id> the id of the device to connect to -c, --detect only detect if the device is connected -b, --bundle <bundle.app> the path to the app bundle to be installed -a, --args command line arguments to pass to the app when launching it -t, --timeout number of seconds to wait for a device to be connected -u, --unbuffered don't buffer stdout -g, --gdbargs extra arguments to pass to GDB when starting the debugger -x, --gdbexec GDB commands script file -n, --nostart do not start the app when debugging -v, --verbose enable verbose output -m, --noinstall directly start debugging without app install (-d not required) -V, --version print the executable version

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.

Listing Device Ids

Device Ids are the UDIDs of the iOS devices. From the command line, you can list device ids this way:

    system_profiler SPUSBDataType | sed -n -e '/iPad/,/Serial/p' -e '/iPhone/,/Serial/p' | grep "Serial Number:" | awk -F ": " '{print $2}'