-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
new features to apple.py #4
Comments
btw, I found that I can get the launch'd PID like so: with elif response.startswith('QC'): and killing like so: and it seems pretty stable. |
Is there any chance apple.py could be extended to support specifying a device to use (e.g. it's UDID), rather than just using the device most recently connected? |
I added a --device-id argument. |
Awesome, thanks. works great. |
python apple.py -get /var/mobile/Media/jailbreak.log . why? |
I've been working on apple.py to support automation however one critical feature missing is the ability to figure out which applications are currently running so you don't try launching the app while the old one is shutting down (bad things happen). I know its possible since Instruments does it, and I know that to figure out what the command is one would have to look at the plists that lockdownd is sending to the device. i was able to use socat to look at the data on usbmuxd however one would have to deconstruct the data and dump the plist data (no time for this now). Anyone have anything up their sleeves for doing this? Also, how should I send my contributions? I could email what I have. I suppose I could just fork this but aren't there enough forks? :)
Here's what I've added so far:
The text was updated successfully, but these errors were encountered: