Last active
February 25, 2025 01:10
-
-
Save skabber/4f2b20c6bd18e5934909189489549cce to your computer and use it in GitHub Desktop.
Export Options Plist Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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>method</key> | |
<string>app-store</string> | |
<key>teamID</key> | |
<string>XXXXXXXXXX</string> | |
<key>uploadBitcode</key> | |
<true/> | |
<key>compileBitcode</key> | |
<true/> | |
<key>uploadSymbols</key> | |
<true/> | |
<key>signingStyle</key> | |
<string>manual</string> | |
<key>signingCertificate</key> | |
<string>iOS Distribution: POSSIBLE Mobile</string> | |
<key>provisioningProfiles</key> | |
<dict> | |
<key>com.client.appname</key> | |
<string>Client App Release</string> | |
<key>com.client.appname.watchkitapp</key> | |
<string>Client App WatchApp Release</string> | |
<key>com.client.appname.watchkitapp.watchkitextension</key> | |
<string>Client App WatchKitExtension Release</string> | |
<key>com.client.appname.RemoteNotificationServiceExtension</key> | |
<string>Client App PushExtension Release</string> | |
<key>com.client.appname.Stickers</key> | |
<string>Client App Stickers Release</string> | |
</dict> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You're missing the header and footer. Is this your entire exportPlist file?