This repository was archived by the owner on Jul 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
73 lines (73 loc) · 1.67 KB
/
Copy pathproject.yml
File metadata and controls
73 lines (73 loc) · 1.67 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: Koi
options:
bundleIdPrefix: com.gariasf
deploymentTarget:
iOS: "17.0"
createIntermediateGroups: true
generateEmptyDirectories: true
settings:
base:
SWIFT_VERSION: "5.0"
MARKETING_VERSION: "2.0.0"
CURRENT_PROJECT_VERSION: "27"
DEVELOPMENT_LANGUAGE: en
DEVELOPMENT_TEAM: AB72ZGY444
CODE_SIGN_STYLE: Automatic
targets:
Koi:
type: application
platform: iOS
deploymentTarget: "17.0"
sources:
- path: Koi
excludes:
- "Resources/Info.plist"
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.gariasf.koi
PRODUCT_NAME: Koi
INFOPLIST_FILE: Koi/Resources/Info.plist
ASSETCATALOG_COMPILER_APPICON_NAME: icon
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME: AccentColor
TARGETED_DEVICE_FAMILY: "1"
ENABLE_PREVIEWS: YES
SWIFT_EMIT_LOC_STRINGS: YES
KoiTests:
type: bundle.unit-test
platform: iOS
deploymentTarget: "17.0"
sources:
- path: Tests
dependencies:
- target: Koi
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.gariasf.koi.tests
GENERATE_INFOPLIST_FILE: YES
KoiUITests:
type: bundle.ui-testing
platform: iOS
deploymentTarget: "17.0"
sources:
- path: UITests
dependencies:
- target: Koi
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.gariasf.koi.uitests
GENERATE_INFOPLIST_FILE: YES
TEST_TARGET_NAME: Koi
schemes:
Koi:
build:
targets:
Koi: all
KoiTests: [test]
KoiUITests: [test]
run:
config: Debug
test:
config: Debug
targets:
- KoiTests
- KoiUITests