-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathproject.yml
57 lines (50 loc) · 1.09 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
name: Project
options:
deploymentTarget:
iOS: 16.0
macOS: 13.0
tvOS: 16.0
bundleIdPrefix: com.ryo.swiftui-atom-properties.examples
createIntermediateGroups: true
settings:
CODE_SIGNING_REQUIRED: NO
CODE_SIGN_IDENTITY: "-"
CODE_SIGN_STYLE: Manual
SWIFT_VERSION: 6
targetTemplates:
App:
type: application
info:
path: App/Info-${target_name}.plist
properties:
UILaunchScreen:
UIRequiresFullScreen: true
CFBundleDisplayName: Atoms
NSLocationWhenInUseUsageDescription: Example Usage
NSMicrophoneUsageDescription: Example Usage
UISupportedInterfaceOrientations:
- UIInterfaceOrientationPortrait
packages:
iOSApp:
path: Packages/iOS
CrossPlatformApp:
path: Packages/CrossPlatform
targets:
iOS:
templates:
- App
platform: iOS
dependencies:
- package: iOSApp
sources:
- App/iOS.swift
CrossPlatform:
templates:
- App
platform:
- macOS
- tvOS
dependencies:
- package: CrossPlatformApp
sources:
- App/CrossPlatform.swift