-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathRelfile
100 lines (88 loc) · 2.23 KB
/
Relfile
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
92
93
94
95
96
97
98
99
100
#
# Relax configuration YAML
#
version: '2'
xcodeproj: SampleApp # 'xcodeproj' or `workspace`
# log_formatter: xcpretty
uploader:
crashlytics:
token: "$CL_TOKEN"
secret: "$CL_SECRET"
group: "$CL_GROUP"
testfairy:
api_key: "$TF_API_KEY"
metrics: "$TF_METRICS"
groups: "$TF_GROUPS"
video: "$TF_VIDEO"
notify: "$TF_NOTIFY"
distributions:
adhoc:
scheme: Sample App
provisioning_profile: "Relax AdHoc"
configuration: Debug
bundle_identifier: com.scenee.SampleApp.adhoc
bundle_version: "%h-%c"
info_plist:
CFBundleName: Sample
build_settings:
OTHER_SWIFT_FLAGS:
- "-DDEBUG"
export_options:
thinning : iPhone7,1
compileBitcode: false
enterprise:
scheme: Sample App
provisioning_profile: "Relax Enterprise"
bundle_identifier: com.scenee.SampleApp.ent
bundle_version: "%h-%C"
appstore:
scheme: Sample App
provisioning_profile: "Relax AppStore"
export_options:
upload_symbols: true
#uploadSymbols: true
#uploadBitcode: true
framework:
scheme: SampleFramework # Required
build_settings:
OTHER_C_FLAGS:
- "-fembed-bitcode"
- "-fsanitize=address"
staticlib:
scheme: SampleLib
development:
scheme: Sample App
provisioning_profile: "Relax Development"
configuration: Debug
bundle_identifier: com.scenee.SampleApp
bundle_version: "%h-%c"
info_plist:
CFBundleName: Sample (Debug)
CFBundleDevelopmentRegion: "$COUNTRY"
UISupportedExternalAccessoryProtocols:
- com.example.SampleApp
- com.example.SampleApp2
MYSETTINGS:
Endpoint: "example.com"
ClientID: qwerty
Preferences:
Foo: bar
Array:
- 1
- 2
build_settings:
OTHER_SWIFT_FLAGS:
- "-DMOCK"
export_options:
compileBitcode: false
development2:
sdk: iphoneos
scheme: Sample App
provisioning_profile: "Relax Development"
configuration: Debug
version: "$VERSION"
bundle_identifier: com.scenee.SampleApp.$BUNDLE_SUFFIX
bundle_version: "%h-debug-internal"
export_options:
compileBitcode: false
# vim: set sts=2 sw=2 ts=2 ft=yaml expandtab :