-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSigning.local.xcconfig.example
More file actions
27 lines (24 loc) · 1.21 KB
/
Copy pathSigning.local.xcconfig.example
File metadata and controls
27 lines (24 loc) · 1.21 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
// =============================================================================
// Signing.local.xcconfig.example
//
// Template for the gitignored `Signing.local.xcconfig`. After cloning:
//
// cp Configs/Signing.local.xcconfig.example Configs/Signing.local.xcconfig
// # edit the copy, then:
// xcodegen generate
//
// The copy is .gitignored and survives every `xcodegen generate`.
//
// Find your DEVELOPMENT_TEAM (10 characters):
// Xcode → Settings → Accounts → select Apple ID → "Manage Certificates…"
// or https://developer.apple.com/account → Membership → Team ID
// =============================================================================
// REQUIRED — your 10-character Team ID. Without this, archives have no team
// embedded and Organizer rejects them with "No Team Found in Archive."
DEVELOPMENT_TEAM = REPLACE_WITH_YOUR_10_CHAR_TEAM_ID
// Recommended: automatic signing for both Debug and Release. Xcode will
// create / refresh the necessary profiles for each distribution method.
CODE_SIGN_STYLE = Automatic
CODE_SIGN_IDENTITY = Apple Development
// If you ever need manual signing for a specific distribution, also set:
// PROVISIONING_PROFILE_SPECIFIER = <profile name>