46 lines
1.5 KiB
Plaintext
46 lines
1.5 KiB
Plaintext
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
<!--
|
||
|
|
ExportOptions template for `xcodebuild -exportArchive`.
|
||
|
|
|
||
|
|
FILL IN:
|
||
|
|
• teamID — your Apple Developer Team ID. Detected from project.yml
|
||
|
|
(DEVELOPMENT_TEAM): K8BLMMR883 ← pre-filled below, verify it.
|
||
|
|
• method — choose ONE:
|
||
|
|
app-store → TestFlight / App Store submission
|
||
|
|
ad-hoc → distribute to registered UDIDs
|
||
|
|
development → internal dev devices
|
||
|
|
enterprise → in-house (Apple Enterprise Program only)
|
||
|
|
|
||
|
|
Notes:
|
||
|
|
• signingStyle "automatic" lets Xcode manage certs/profiles (pairs with
|
||
|
|
-allowProvisioningUpdates in release.yml). Switch to "manual" if you
|
||
|
|
install a specific distribution profile on the runner.
|
||
|
|
-->
|
||
|
|
<!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>K8BLMMR883</string>
|
||
|
|
|
||
|
|
<key>signingStyle</key>
|
||
|
|
<string>automatic</string>
|
||
|
|
|
||
|
|
<key>uploadSymbols</key>
|
||
|
|
<true/>
|
||
|
|
|
||
|
|
<key>uploadBitcode</key>
|
||
|
|
<false/>
|
||
|
|
|
||
|
|
<!-- Optional: pin the app to a specific provisioning profile (manual signing).
|
||
|
|
<key>provisioningProfiles</key>
|
||
|
|
<dict>
|
||
|
|
<key>com.kutesir.KisaniCal</key>
|
||
|
|
<string>YOUR_PROFILE_NAME</string>
|
||
|
|
</dict>
|
||
|
|
-->
|
||
|
|
</dict>
|
||
|
|
</plist>
|