-
Notifications
You must be signed in to change notification settings - Fork 468
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
Add -k/--key option. Allow getting more properties of the app #497
Conversation
…ent command to start house arrest service
sync from origin
…tory recursively; add --json support for list_file
…_files_callback when --json option is set
fix: remove extra space
This reverts commit c688b8b.
merge latest
Merge Fix
Merge from official repo master
Also revise the error message. Seems we missed some required options before
|
May I ask how often did you release a new official version to HomeBrew ? |
Thanks for the PR! Will try to make some time today to take a look. As for release schedule, it's pretty much ad-hoc. We haven't done a release in a while so I can get a new release going after this PR lands. |
Update README.md. Replace the space with tab
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
H
Now by using
-B
and-j
options together, we can get some basic properties of the app. LikeCFBundleVersion
.But actually more properties could be output by passing the corresponding keys.
So I add a new option, allowing people to get more properties. If multiple keys are needed, we can join them by '&'
For example, if we need
UIFileSharingEnabled
,CFBundleExecutable
,CFBundlePackageType
of the installed app.We can use the command :
ios-deploy -B -j --key=UIFileSharingEnabled&CFBundleExecutable&CFBundlePackageType
Part of output: