forked from techinpark/reactorkit-based-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.yml
91 lines (91 loc) · 2.66 KB
/
project.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
85
86
87
88
89
90
91
name: appname
options:
usesTabs: false
indentWidth: 4
tabWidth: 4
bundleIdPrefix: com.tmsae
createIntermediateGroups: true
generateEmptyDirectories: true
deploymentTarget:
iOS: '13.0'
fileGroups:
- Sources
- Supporting Files
configs:
Development Debug: debug
Development Release: release
AppStore Debug: debug
AppStore Release: release
configFiles:
Development Debug: Supporting Files/Environment/Debug.xcconfig
Development Release: Supporting Files/Environment/Release.xcconfig
AppStore Debug: Supporting Files/Environment/Debug.xcconfig
AppStore Release: Supporting Files/Environment/Release.xcconfig
scheme:
appname:
build:
targets:
appname: [run, archive]
targets:
appname:
attributes:
SystemCapabilities:
com.apple.Push:
enabled: 1
scheme:
configVariants:
- Development
- AppStore
# testTargets:
# - appnameSwiftTests
# - appnameUITests
type: application
platform: iOS
deploymentTarget: '13.0'
settings:
base:
INFOPLIST_FILE: Supporting Files/Info.plist
FRAMEWORK_SEARCH_PATHS: [$(inherited), $(PROJECT_DIR), $(SRCROOT)]
LIBRARY_SEARCH_PATHS: [$(inherited)]
DEVELOPMENT_TEAM: U6GQL8JQMT
CODE_SIGN_STYLE: Manual
ENABLE_BITCODE: false
TARGETED_DEVICE_FAMILY: 1
DEBUG_INFORMATION_FORMAT: dwarf-with-dsym
configs:
Development:
PRODUCT_BUNDLE_IDENTIFIER: "com.tmsaeapp.appname.beta"
CODE_SIGN_IDENTITY: iPhone Developer
PROVISIONING_PROFILE_SPECIFIER: match Development com.tmsaeapp.appname.beta
AppStore:
PRODUCT_BUNDLE_IDENTIFIER: "com.tmsaeapp.appname"
CODE_SIGN_IDENTITY: iPhone Distribution
PROVISIONING_PROFILE_SPECIFIER: match AppStore com.tmsaeapp.appname
sources:
- Sources
- path: 'Supporting Files'
type: group
- path: 'Resources'
type: group
postBuildScripts:
- path: BuildScripts/GoogleServiceInfoCopy.sh
name: GoogleService-Info Copy
- path: BuildScripts/FirebaseCrashlytics.sh
name: Firebase Crashlytics
inputFiles:
- ${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Resources/DWARF/${TARGET_NAME}
- $(SRCROOT)/$(BUILT_PRODUCTS_DIR)/$(INFOPLIST_PATH)
# appnameSwiftTests:
# platform: iOS
# type: bundle.unit-test
# sources:
# - appnameSwiftTests
# dependencies:
# - target: appname
# appnameUITests:
# platform: iOS
# type: bundle.ui-testing
# sources:
# - appnameUITests
# dependencies:
# - target: appname