I'm writing a command-line tool that other developers will run. I'd like to extract the bundle id of the app from their Info.plist file. I can read the plist using something like PlistBuddy or Python's plistlib but I don't know how to reliably extract the $PRODUCT_NAME variable. How can I do this from a shell script?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can get the bundle ID from the plist using PlistBuddy:
The product name isn't likely to be available as that information is stored in the Build Settings, not the Info plist. |
|||
|
|