MovieMapper/ExportOptions.plist
Jarian Cottingham 68eb4d9f43 feat: Add Rust UI and backend implementation with project infrastructure
Adds the new Rust-based UI (iced), backend service, shared Swift models,
CI/CD workflows, build scripts, and project documentation.
2026-08-19 21:22:08 -05:00

51 lines
1.4 KiB
Plaintext

<?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>
<!-- App Store Distribution -->
<key>method</key>
<string>app-store</string>
<!-- Team ID (optional - use if you have multiple teams) -->
<key>teamID</key>
<string>YourTeamID</string>
<!-- Bundle ID -->
<key>bundleIdentifier</key>
<string>com.yourcompany.MovieMapper</string>
<!-- App Store Connect app ID -->
<key>appID</key>
<string>com.yourcompany.MovieMapper</string>
<!-- Code signing identity -->
<key>codeSignIdentity</key>
<string>iPhone Distribution</string>
<!-- Provisioning profile type -->
<key>provisioningProfiles</key>
<dict>
<key>com.yourcompany.MovieMapper</key>
<string>AppStore-MovieMapper</string>
</dict>
<!-- Options -->
<key>compileBitcode</key>
<false/>
<key>uploadBitcode</key>
<false/>
<key>stripSwiftSymbols</key>
<true/>
<key>thinProvisioningProfile</key>
<true/>
<key>manifest</key>
<dict>
<key>url</key>
<string>https://your-server.com/app.plist</string>
<key>displayImageURL</key>
<string>https://your-server.com/app-icon-512.png</string>
<key>fullSizeImageURL</key>
<string>https://your-server.com/app-icon-1024.png</string>
</dict>
</dict>
</plist>