-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.yml
More file actions
65 lines (61 loc) · 1.77 KB
/
project.yml
File metadata and controls
65 lines (61 loc) · 1.77 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
name: vreader
options:
bundleIdPrefix: com.vreader
deploymentTarget:
iOS: "17.0"
xcodeVersion: "16.0"
generateEmptyDirectories: true
settings:
base:
SWIFT_VERSION: "6.0"
SWIFT_STRICT_CONCURRENCY: complete
targets:
vreader:
type: application
platform: iOS
sources:
- path: vreader
excludes:
- "**/.gitkeep"
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.vreader.app
GENERATE_INFOPLIST_FILE: YES
CURRENT_PROJECT_VERSION: 1
MARKETING_VERSION: 0.1.0
INFOPLIST_KEY_CFBundleDisplayName: vreader
INFOPLIST_KEY_UILaunchScreen_Generation: YES
INFOPLIST_KEY_UISupportedInterfaceOrientations: "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"
INFOPLIST_KEY_UISupportedInterfaceOrientations~ipad: "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"
scheme:
testTargets:
- vreaderTests
- vreaderUITests
vreaderTests:
type: bundle.unit-test
platform: iOS
sources:
- path: vreaderTests
excludes:
- "**/.gitkeep"
- "ViewModels/LibraryViewModelPersistenceTests.swift"
dependencies:
- target: vreader
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.vreader.tests
GENERATE_INFOPLIST_FILE: YES
vreaderUITests:
type: bundle.ui-testing
platform: iOS
sources:
- path: vreaderUITests
excludes:
- "**/.gitkeep"
dependencies:
- target: vreader
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.vreader.uitests
GENERATE_INFOPLIST_FILE: YES
TEST_TARGET_NAME: vreader