-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
78 lines (72 loc) · 1.83 KB
/
Copy pathproject.yml
File metadata and controls
78 lines (72 loc) · 1.83 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
name: FloatClock
options:
bundleIdPrefix: com.looluo
deploymentTarget:
iOS: "18.0"
xcodeVersion: "26.0"
settings:
base:
SWIFT_VERSION: "6.0"
TARGETED_DEVICE_FAMILY: "1"
targets:
FloatClock:
type: application
platform: iOS
sources:
- path: FloatClockApp
- path: FloatClockShared
dependencies:
- target: FloatClockLiveActivity
embed: true
info:
path: FloatClockApp/Info.plist
properties:
CFBundleDisplayName: FloatClock
NSSupportsLiveActivities: true
UILaunchScreen: {}
UISupportedInterfaceOrientations:
- UIInterfaceOrientationPortrait
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.looluo.FloatClock
CODE_SIGN_STYLE: Automatic
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
FloatClockLiveActivity:
type: app-extension
platform: iOS
sources:
- path: FloatClockLiveActivity
- path: FloatClockShared
info:
path: FloatClockLiveActivity/Info.plist
properties:
CFBundleDisplayName: FloatClock Live Activity
NSExtension:
NSExtensionPointIdentifier: com.apple.widgetkit-extension
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.looluo.FloatClock.LiveActivity
CODE_SIGN_STYLE: Automatic
APPLICATION_EXTENSION_API_ONLY: YES
SKIP_INSTALL: YES
FloatClockTests:
type: bundle.unit-test
platform: iOS
sources:
- path: FloatClockTests
dependencies:
- target: FloatClock
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.looluo.FloatClockTests
GENERATE_INFOPLIST_FILE: YES
schemes:
FloatClock:
build:
targets:
FloatClock: all
FloatClockLiveActivity: all
FloatClockTests: [test]
test:
targets:
- FloatClockTests