Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Launch installed app on tethered iPhone

Tags:

ios

iphone

ipad

I'm working on trying to launch an automated testing solution for some iOS applications. I'm using fruitstrap to transfer and install a compiled app over to the connected iPhone, but I'm struggling to find a way to automatically launch the application after the installation is complete.

Fruitstrap has an option to run the app in the GDB debugger, which works. Unfortunately there are some test cases which will require the app to be run without the debugger attached (special crash handling). I've spent a good amount of time muddling through the resources available on MobileDevice Library which is what Fruitstrap uses, but I haven't been able to turn anything up on launching an App.

Any ideas?

like image 947
BlueVoid Avatar asked Jul 09 '12 22:07

BlueVoid


3 Answers

You can do what you want by using fruitstrap or Xcode to start a "bootstrap" program that causes your target application to run via a custom URL as described by Michael.

While the bootstrap program would be running under the debugger the URL-invoked program would be running normally.

like image 146
idz Avatar answered Oct 29 '22 02:10

idz


Creating a bootstrap program and using URL Schemes may be an option for some people, and certainly should be considered, but it doesn't fit into my requirements.

What I ended up doing was to launch the app with the debugger through fruitstrap. I re-compiled fruitstrap to include the following prep commands (In the GDB_PREP_CMDS define):

handle all noprint pass nostop
continue

The handle will pass the signal on to the program so the custom signal handler (crash handler in this case) will handle the signal. The continue was something I needed so that the app would actually run once the debugger started.

There is one unfortunate flaw in this, which unfortunately I do not know a workaround for. The ARM7 version of GDB does not have the 'set dont_handle_bad_access' command like the darwin version does. For some reason passing EXC_BAD_ACCESS signals to the program does not work and the app hangs. This is significant since this is the signal for most crashes. But as it stands now, its the best I can do, and at least its handling uncaught exceptions.

like image 27
BlueVoid Avatar answered Oct 29 '22 01:10

BlueVoid


I believe you may be looking for some sort of Custom URL Scheme.

Have a look at the following document and scroll down to: Implementing Custom URL Schemes

http://developer.apple.com/library/ios/#DOCUMENTATION/iPhone/Conceptual/iPhoneOSProgrammingGuide/AdvancedAppTricks/AdvancedAppTricks.html

You can also google URL Schemes in iOS to see if you come across something similar to what you are trying to do.

Let me know if this helped you out. Would be interesting to hear if you had any success.

Cheers.

like image 1
Michael Avatar answered Oct 29 '22 01:10

Michael