User management
Error
Your Apple ID cannot end in @______.com. Choose a different email address.
Solution
This is because “________.com” domain is added in Apple Business Manager
https://support.apple.com/en-gb/guide/apple-business-manager/apde685676ac/web
How to find .app file?
- Run the app onto a simulator
- You can find .app file here
open ~/Library/Developer/CoreSimulator/Devices/xxxxx-xxxxxx-xxxxxx-xxxxxx/data/Containers/Bundle/Application/xxxxxx-xxxxx-xxxxxx-xxxxx/zzzzzz.app
How to find provisioning profile info from an ipa file?
- Install ProvisionQL
- Press space bar onto .ipa file to see the info dialog
How to create an entitlement.plist file?
This is an example of entitlement’s value of boolean
<?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>your-entitlement-name-here</key> <true/> </dict> </plist>
How to check if the plist format is correct?
plutil -lint xxx/xxx/xxx/xxx.entitlements
Leave a Reply