-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathExportOptions.plist.example
More file actions
52 lines (44 loc) · 1.59 KB
/
Copy pathExportOptions.plist.example
File metadata and controls
52 lines (44 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?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">
<!--
ExportOptions.plist.example
Copy or generate ExportOptions.plist locally for distribution, then run:
xcodebuild archive \
-project KeriWallet.xcodeproj \
-scheme KeriWallet \
-configuration Release \
-destination 'generic/platform=iOS' \
-archivePath build/KeriWallet.xcarchive
xcodebuild -exportArchive \
-archivePath build/KeriWallet.xcarchive \
-exportPath build/export \
-exportOptionsPlist ExportOptions.plist
ExportOptions.plist is intentionally untracked: it is environment-specific
release configuration and may contain signing/provisioning mappings.
This .example file is the committed secret-free template.
-->
<plist version="1.0">
<dict>
<!-- Your 10-character Apple Team ID (found in developer.apple.com → Membership) -->
<key>teamID</key>
<string>YOUR_TEAM_ID</string>
<!-- Distribution method: app-store | ad-hoc | development | enterprise -->
<key>method</key>
<string>app-store</string>
<key>destination</key>
<string>export</string>
<!-- automatic: Xcode manages signing profiles -->
<!-- manual: uncomment and fill in provisioningProfiles below -->
<key>signingStyle</key>
<string>automatic</string>
<!--
<key>provisioningProfiles</key>
<dict>
<key>com.kerifoundation.wallet</key>
<string>YOUR_PROVISIONING_PROFILE_NAME</string>
</dict>
-->
<key>uploadSymbols</key>
<true/>
</dict>
</plist>