-
Notifications
You must be signed in to change notification settings - Fork 525
/
xcodegen_common.yml
84 lines (84 loc) · 2.96 KB
/
xcodegen_common.yml
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# Shared configuations for XCodeGen projects
options:
xcodeVersion: "15.3"
minimumXCodeGenVersion: 2.41.0
createIntermediateGroups: true
developmentLanguage: "en"
usesTabs: true
tabWidth: 4 # Keep this in sync with the `.swift-format.json`
deploymentTarget:
iOS: "15.0"
groupSortPosition: "top"
transitivelyLinkDependencies: false
localPackagesGroup: ""
configs:
Debug Development: "debug"
Debug Staging: "debug"
Debug Production: "debug"
Release Development: "release"
Release Staging: "release"
Release Production: "release"
settings:
base:
SUPPORTED_PLATFORMS: "iphoneos iphonesimulator"
TARGETED_DEVICE_FAMILY: "1,2"
SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD: "NO"
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD: "NO"
SUPPORTS_MACCATALYST: "NO"
SWIFT_VERSION: "5.0"
COPY_PHASE_STRIP: "NO"
ALWAYS_SEARCH_USER_PATHS: "NO"
GCC_DYNAMIC_NO_PIC: "NO"
GCC_C_LANGUAGE_STANDARD: "gnu17"
CLANG_ENABLE_MODULES: "YES"
CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION: "YES"
INFOPLIST_KEY_NSHumanReadableCopyright: "Copyright © 2024 Tutao GmbH. All rights reserved."
configs:
Debug Development:
CODE_SIGN_IDENTITY: "Apple Development"
CODE_SIGN_STYLE: "Automatic"
PRODUCT_BUNDLE_IDENTIFIER: "${bundleIdPrefix}.debug"
SWIFT_OPTIMIZATION_LEVEL: "-Onone"
SWIFT_ACTIVE_COMPILATION_CONDITIONS: "DEBUG"
ONLY_ACTIVE_ARCH: "YES"
ENABLE_TESTABILITY: "YES"
GCC_OPTIMIZATION_LEVEL: 0
GCC_PREPROCESSOR_DEFINITIONS: "DEBUG=1 $(inherited)"
Debug Staging:
CODE_SIGN_IDENTITY: "Apple Development"
CODE_SIGN_STYLE: "Automatic"
PRODUCT_BUNDLE_IDENTIFIER: "${bundleIdPrefix}.test"
SWIFT_OPTIMIZATION_LEVEL: "-Onone"
SWIFT_ACTIVE_COMPILATION_CONDITIONS: "DEBUG"
ONLY_ACTIVE_ARCH: "YES"
ENABLE_TESTABILITY: "YES"
GCC_OPTIMIZATION_LEVEL: 0
GCC_PREPROCESSOR_DEFINITIONS: "DEBUG=1 $(inherited)"
Debug Production:
CODE_SIGN_IDENTITY: "Apple Development"
CODE_SIGN_STYLE: "Automatic"
PRODUCT_BUNDLE_IDENTIFIER: "${bundleIdPrefix}"
SWIFT_OPTIMIZATION_LEVEL: "-Onone"
SWIFT_ACTIVE_COMPILATION_CONDITIONS: "DEBUG"
ONLY_ACTIVE_ARCH: "YES"
ENABLE_TESTABILITY: "YES"
GCC_OPTIMIZATION_LEVEL: 0
GCC_PREPROCESSOR_DEFINITIONS: "DEBUG=1 $(inherited)"
Release Development:
CODE_SIGN_IDENTITY: "Apple Distribution"
CODE_SIGN_STYLE: "Manual"
PRODUCT_BUNDLE_IDENTIFIER: "${bundleIdPrefix}.debug"
SWIFT_OPTIMIZATION_LEVEL: "-O"
VALIDATE_PRODUCT: "YES"
Release Staging:
CODE_SIGN_IDENTITY: "Apple Distribution"
CODE_SIGN_STYLE: "Manual"
PRODUCT_BUNDLE_IDENTIFIER: "${bundleIdPrefix}.test"
SWIFT_OPTIMIZATION_LEVEL: "-O"
VALIDATE_PRODUCT: "YES"
Release Production:
CODE_SIGN_IDENTITY: "Apple Distribution"
CODE_SIGN_STYLE: "Manual"
PRODUCT_BUNDLE_IDENTIFIER: "${bundleIdPrefix}"
SWIFT_OPTIMIZATION_LEVEL: "-O"
VALIDATE_PRODUCT: "YES"