Apple – App Store (2)

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
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
open ~/Library/Developer/CoreSimulator/Devices/xxxxx-xxxxxx-xxxxxx-xxxxxx/data/Containers/Bundle/Application/xxxxxx-xxxxx-xxxxxx-xxxxx/zzzzzz.app
open ~/Library/Developer/CoreSimulator/Devices/xxxxx-xxxxxx-xxxxxx-xxxxxx/data/Containers/Bundle/Application/xxxxxx-xxxxx-xxxxxx-xxxxx/zzzzzz.app
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

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<?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>
<?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>
<?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

Be the first to comment

Leave a Reply

Your email address will not be published.


*