-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.yml
83 lines (83 loc) · 2.7 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
name: Example
options:
bundleIdPrefix: com.tinder
deploymentTarget:
iOS: "15.0"
defaultConfig: Release
settingPresets: none
usesTabs: false
tabWidth: 4
indentWidth: 4
packages:
CombineUI:
path: ../
configFiles:
Debug: BuildSettings/Debug.xcconfig
Release: BuildSettings/Release.xcconfig
fileGroups:
- BuildSettings
targets:
Example:
type: application
platform: iOS
dependencies:
- package: CombineUI
sources: Example
scheme:
testTargets:
- ExampleTests
configFiles:
Debug: Example/BuildSettings/Debug.xcconfig
Release: Example/BuildSettings/Release.xcconfig
info:
path: Example/Generated/Info.plist
properties:
CFBundleDevelopmentRegion: $(DEVELOPMENT_LANGUAGE)
CFBundleDisplayName: Example
CFBundleExecutable: $(EXECUTABLE_NAME)
CFBundleIdentifier: $(PRODUCT_BUNDLE_IDENTIFIER)
CFBundleInfoDictionaryVersion: "6.0"
CFBundleName: $(PRODUCT_NAME)
CFBundlePackageType: $(PRODUCT_BUNDLE_PACKAGE_TYPE)
CFBundleShortVersionString: "1.0"
CFBundleVersion: "1"
LSRequiresIPhoneOS: true
UIApplicationSceneManifest:
UIApplicationSupportsMultipleScenes: true
UISceneConfigurations:
UIWindowSceneSessionRoleApplication:
- UISceneConfigurationName: Default Configuration
UISceneDelegateClassName: $(PRODUCT_MODULE_NAME).SceneDelegate
UIApplicationSupportsIndirectInputEvents: true
UILaunchStoryboardName: LaunchScreen
UIRequiredDeviceCapabilities:
- armv7
UISupportedInterfaceOrientations:
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
UISupportedInterfaceOrientations~ipad:
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationPortraitUpsideDown
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
ExampleTests:
type: bundle.unit-test
platform: iOS
dependencies:
- target: Example
sources: ExampleTests
configFiles:
Debug: ExampleTests/BuildSettings/Debug.xcconfig
Release: ExampleTests/BuildSettings/Release.xcconfig
info:
path: ExampleTests/Generated/Info.plist
properties:
CFBundleDevelopmentRegion: $(DEVELOPMENT_LANGUAGE)
CFBundleExecutable: $(EXECUTABLE_NAME)
CFBundleIdentifier: $(PRODUCT_BUNDLE_IDENTIFIER)
CFBundleInfoDictionaryVersion: "6.0"
CFBundleName: $(PRODUCT_NAME)
CFBundlePackageType: $(PRODUCT_BUNDLE_PACKAGE_TYPE)
CFBundleShortVersionString: "1.0"
CFBundleVersion: "1"