ios-deploy/README.md

34 lines
1.4 KiB
Markdown
Raw Normal View History

2013-04-30 20:45:23 +02:00
ios-deploy
2011-09-16 16:06:56 +02:00
==========
2011-09-16 16:11:20 +02:00
Install and debug iPhone apps without using Xcode. Designed to work on unjailbroken devices.
2011-09-16 16:06:56 +02:00
## 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
2013-04-30 21:20:02 +02:00
* `ios-deploy [-d] -b <app> [device_id]`
2011-09-16 16:06:56 +02:00
* Optional `-d` flag launches a remote GDB session after the app has been installed.
2011-09-16 16:19:30 +02:00
* `<app>` must be an iPhone application bundle, *not* an IPA.
2012-05-10 21:38:31 +02:00
* Optional `device_id`; useful when you have more than one iPhone/iPad connected.
2011-09-16 16:06:56 +02:00
## 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.
2013-04-30 21:19:01 +02:00
## Listing Device Ids
Device Ids are the UDIDs of the iOS devices. From the command line, you can list device ids [this way](http://javierhz.blogspot.com/2012/06/how-to-get-udid-of-iphone-using-shell.html):
system_profiler SPUSBDataType | sed -n -e '/iPad/,/Serial/p' -e '/iPhone/,/Serial/p' | grep "Serial Number:" | awk -F ": " '{print $2}'