Desktop channels → xyz.blakeslee.nucleic.desktop.{dev,beta,rc,release} (the stable channel keyword is unchanged; only its bundle-id suffix is "release"). iOS remote → xyz.blakeslee.nucleic.remote, including its Keychain account namespaces, the scanner log subsystem, and the coupled APNS topic.
Correct the Apple Developer Team ID to L7UDTQ6F5W across the Xcode project, ExportOptions, the APNS config + tests, and the signing/cloud docs.
Co-Authored-By: Claude Opus 4.8 <[email protected]>
29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Export options for the NucleicRemote iPhone app, used by `xcodebuild -exportArchive`
|
|
(scripts/ios-release.sh) to produce an App Store build and upload it to App Store Connect
|
|
(it then appears in TestFlight). `destination = upload` makes exportArchive upload directly
|
|
rather than writing a local .ipa.
|
|
|
|
Note: `method = app-store-connect` is the current name (Xcode 15.3+). On older Xcode use
|
|
`app-store` instead. Signing is automatic — Xcode manages the distribution profile for team
|
|
L7UDTQ6F5W (needs an "Apple Distribution" cert + the App ID registered; see signing/README.md).
|
|
-->
|
|
<!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-connect</string>
|
|
<key>destination</key>
|
|
<string>upload</string>
|
|
<key>teamID</key>
|
|
<string>L7UDTQ6F5W</string>
|
|
<key>signingStyle</key>
|
|
<string>automatic</string>
|
|
<key>uploadSymbols</key>
|
|
<true/>
|
|
<key>manageAppVersionAndBuildNumber</key>
|
|
<false/>
|
|
</dict>
|
|
</plist>
|