This repository was archived by the owner on Jul 15, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
206 lines (197 loc) · 6.98 KB
/
Copy pathproject.yml
File metadata and controls
206 lines (197 loc) · 6.98 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
name: Clicker
options:
bundleIdPrefix: com.dou
deploymentTarget:
macOS: "14.0"
iOS: "18.0"
watchOS: "10.0"
xcodeVersion: "16.0"
generateEmptyDirectories: true
settings:
base:
SWIFT_VERSION: "5.9"
ENABLE_USER_SCRIPT_SANDBOXING: false
targets:
# ─────────────────────────────────────────────────────────────
# Mac Menu Bar App
# ─────────────────────────────────────────────────────────────
ClickerMac:
type: application
platform: macOS
sources:
- path: MacApp
excludes:
- "*.plist"
- "*.entitlements"
- path: Shared
info:
path: MacApp/Info.plist
properties:
CFBundleName: ClickerRemoteReceiver
LSUIElement: true
NSBonjourServices:
- _clickerremote._tcp
- _clickerremote._udp
NSLocalNetworkUsageDescription: "Clicker needs local network access to connect with your iPhone for presentation control."
NSAppleEventsUsageDescription: "Clicker needs to send keystrokes to control your presentation software."
entitlements:
path: MacApp/ClickerMac.entitlements
properties:
com.apple.security.network.client: true
com.apple.security.network.server: true
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.dou.clicker-mac
PRODUCT_NAME: ClickerRemoteReceiver
MACOSX_DEPLOYMENT_TARGET: "14.0"
MARKETING_VERSION: "1.10"
CURRENT_PROJECT_VERSION: "1"
CODE_SIGN_STYLE: Automatic
CODE_SIGN_ENTITLEMENTS: MacApp/ClickerMac.entitlements
DEVELOPMENT_TEAM: HD35YQ72U4
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
# Required for notarization
ENABLE_HARDENED_RUNTIME: YES
configs:
Release:
CODE_SIGN_STYLE: Manual
CODE_SIGN_IDENTITY: "Developer ID Application"
CODE_SIGN_INJECT_BASE_ENTITLEMENTS: NO
OTHER_CODE_SIGN_FLAGS: "--timestamp"
# ─────────────────────────────────────────────────────────────
# iPhone App
# ─────────────────────────────────────────────────────────────
ClickeriOS:
type: application
platform: iOS
sources:
- path: iPhoneApp
excludes:
- "*.plist"
- "*.storekit"
- path: iPhoneApp/ClickerRemote.storekit
buildPhase: none
- path: Shared
capabilities:
In-App Purchase: {}
info:
path: iPhoneApp/Info.plist
properties:
CFBundleName: ClickerRemote
UILaunchScreen: {}
UISupportedInterfaceOrientations:
- UIInterfaceOrientationPortrait
NSBonjourServices:
- _clickerremote._tcp
- _clickerremote._udp
NSSupportsLiveActivities: true
NSLocalNetworkUsageDescription: "Clicker needs local network access to find and connect to your Mac."
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.dou.clicker-ios
PRODUCT_NAME: ClickerRemote
IPHONEOS_DEPLOYMENT_TARGET: "18.0"
MARKETING_VERSION: "1.10"
CURRENT_PROJECT_VERSION: "1"
CODE_SIGN_STYLE: Automatic
DEVELOPMENT_TEAM: HD35YQ72U4
TARGETED_DEVICE_FAMILY: "1" # iPhone only
SUPPORTS_MAC_DESIGNED_FOR_IPHONE: false
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
dependencies:
- target: ClickerWatch
embed: true
- target: ClickerLiveActivity
embed: true
# ─────────────────────────────────────────────────────────────
# Live Activity Widget Extension
# ─────────────────────────────────────────────────────────────
ClickerLiveActivity:
type: app-extension
platform: iOS
sources:
- path: LiveActivityWidget
- path: iPhoneApp/PresentationAttributes.swift
info:
path: LiveActivityWidget/Info.plist
properties:
CFBundleDisplayName: ClickerLiveActivity
NSExtension:
NSExtensionPointIdentifier: com.apple.widgetkit-extension
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.dou.clicker-ios.LiveActivity
PRODUCT_NAME: ClickerLiveActivity
IPHONEOS_DEPLOYMENT_TARGET: "18.0"
MARKETING_VERSION: "1.10"
CURRENT_PROJECT_VERSION: "1"
CODE_SIGN_STYLE: Automatic
DEVELOPMENT_TEAM: HD35YQ72U4
TARGETED_DEVICE_FAMILY: "1"
SWIFT_EMIT_LOC_STRINGS: "YES"
# ─────────────────────────────────────────────────────────────
# Apple Watch App
# ─────────────────────────────────────────────────────────────
ClickerWatch:
type: application
platform: watchOS
sources:
- path: WatchApp
excludes:
- "*.plist"
- path: Shared
info:
path: WatchApp/Info.plist
properties:
CFBundleName: ClickerWatch
WKApplication: true
WKCompanionAppBundleIdentifier: com.dou.clicker-ios
WKBackgroundModes:
- self-care
NSMotionUsageDescription: "Clicker uses motion sensors to detect wrist gestures for hands-free slide control during presentations."
entitlements:
path: WatchApp/ClickerWatch.entitlements
properties: {}
dependencies:
- sdk: CoreMotion.framework
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.dou.clicker-ios.watchkitapp
PRODUCT_NAME: ClickerWatch
WATCHOS_DEPLOYMENT_TARGET: "10.0"
MARKETING_VERSION: "1.10"
CURRENT_PROJECT_VERSION: "1"
CODE_SIGN_STYLE: Automatic
DEVELOPMENT_TEAM: HD35YQ72U4
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
SDKROOT: watchos
TARGETED_DEVICE_FAMILY: "4" # Watch only
schemes:
ClickerMac:
build:
targets:
ClickerMac: all
run:
config: Debug
archive:
config: Release
ClickeriOS:
build:
targets:
ClickeriOS: all
ClickerWatch: all
ClickerLiveActivity: all
run:
config: Debug
executable: ClickeriOS
storeKitConfiguration: iPhoneApp/ClickerRemote.storekit
archive:
config: Release
ClickerWatch:
build:
targets:
ClickerWatch: all
run:
config: Debug
archive:
config: Release