-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
84 lines (80 loc) · 2.48 KB
/
Copy pathproject.yml
File metadata and controls
84 lines (80 loc) · 2.48 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
74
75
76
77
78
79
80
81
82
83
84
name: NeuroStudy
options:
bundleIdPrefix: com.neurostudy
deploymentTarget:
iOS: "17.0"
macOS: "14.0"
xcodeVersion: "16.0"
defaultConfig: Debug
settings:
base:
SWIFT_VERSION: "5.9"
GENERATE_INFOPLIST_FILE: YES
CURRENT_PROJECT_VERSION: 2
MARKETING_VERSION: 1.0
INFOPLIST_KEY_CFBundleDisplayName: NeuroStudy
INFOPLIST_KEY_ITSAppUsesNonExemptEncryption: NO
targets:
NeuroStudy:
type: application
platform: [iOS, macOS]
sources:
- path: Shared
type: group
excludes:
- "Resources/*.pdf"
# Internal dev notes. Without this they are copied into the app bundle
# as resources and ship to users inside the IPA.
- "**/*.md"
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.neurostudy.app
INFOPLIST_KEY_UIApplicationSceneManifest_Generation: YES
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents: YES
INFOPLIST_KEY_UILaunchScreen_Generation: YES
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad: "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone: "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"
ENABLE_PREVIEWS: YES
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME: AccentColor
DEVELOPMENT_TEAM: 47K6N92W54
CODE_SIGN_STYLE: Automatic
CODE_SIGN_IDENTITY: "Apple Development"
configs:
Debug:
SWIFT_OPTIMIZATION_LEVEL: "-Onone"
Release:
SWIFT_OPTIMIZATION_LEVEL: "-O"
NeuroStudyUITests:
type: bundle.ui-testing
platform: iOS
sources:
- path: NeuroStudyUITests
dependencies:
- target: NeuroStudy_iOS
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.neurostudy.app.uitests
DEVELOPMENT_TEAM: 47K6N92W54
TEST_TARGET_NAME: NeuroStudy_iOS
GENERATE_INFOPLIST_FILE: YES
schemes:
NeuroStudy_iOS:
build:
targets:
NeuroStudy_iOS: all
NeuroStudyUITests: [test]
run:
config: Debug
test:
config: Debug
targets:
- name: NeuroStudyUITests
parallelizable: false
randomExecutionOrder: false
profile:
config: Release
analyze:
config: Debug
archive:
config: Release