How to check the entitlements on my Application's Signature

来源:互联网 发布:淘宝代购延长收货 编辑:程序博客网 时间:2024/05/20 01:08

codesign -d --entitlements - /path/to/yourappname.app 
output something like these:

Executable=/Users/yourappname/Desktop/delete/Payload/yourappname.app/yourappname

??qqZ<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>application-identifier</key>
<string>7MC34347R2.com.yourappname.hd</string>
<key>aps-environment</key>
<string>production</string>
<key>beta-reports-active</key>
<true/>
<key>com.apple.developer.icloud-container-identifiers</key>
<array>
<string>iCloud.com.yourappname.hd</string>
</array>
<key>com.apple.developer.icloud-services</key>
<array>
<string>CloudKit</string>
</array>
<key>com.apple.developer.team-identifier</key>
<string>27A34534554N</string>
<key>com.apple.developer.ubiquity-kvstore-identifier</key>
<string>27A282F54N.com.yourappname.hd</string>
<key>com.apple.security.application-groups</key>
<array/>
<key>get-task-allow</key>
<false/>
</dict>
</plist>
0 0