Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Launch IPA file after installed on device

Tags:

xcode

ios

ipa

I managed to install applications in the IPA format on (non jailbroken) iOS devices from my terminal using libimobiledevice. Unfortunately this only takes me halfway. Now I need to start the newly installed application automatically as a part of our nightly build job for testing purposes.

All information is much appreciated.

Thanks in advance.

like image 591
Erik Avatar asked Jul 03 '12 08:07

Erik


2 Answers

I suggest use idevicedebug from the libimobiledevice library. https://github.com/libimobiledevice/libimobiledevice.

Command goes like: idevicedebug run [APP_ID]. Usually, you would have to run ideviceinstaller -l first to get the APP_ID value before running idevicedebug.

This worked for me, hope it does with you too.

like image 108
warfreak92 Avatar answered Sep 28 '22 12:09

warfreak92


If you don't mind using another utility (which depends on libimobiledevice):

Crackleware iDevice App Runner (GitHub)

like image 34
Evan Mulawski Avatar answered Sep 28 '22 13:09

Evan Mulawski