forked from livekit/livekit-wakeword
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
104 lines (101 loc) · 2.87 KB
/
Copy pathproject.yml
File metadata and controls
104 lines (101 loc) · 2.87 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
name: WakewordDemo
options:
bundleIdPrefix: io.livekit.example
deploymentTarget:
iOS: "16.0"
macOS: "14.0"
createIntermediateGroups: true
xcodeVersion: "15.0"
settings:
base:
SWIFT_VERSION: "5.9"
MARKETING_VERSION: "0.1.0"
CURRENT_PROJECT_VERSION: "1"
packages:
LiveKitWakeWord:
path: ../../swift
targets:
WakewordDemo:
type: application
platform: iOS
deploymentTarget: "16.0"
sources:
- path: WakewordDemo
excludes:
- "Info.plist"
- "Info-Mac.plist"
- "WakewordDemoMac.entitlements"
resources:
- path: WakewordDemo/Resources
info:
path: WakewordDemo/Info.plist
properties:
CFBundleDisplayName: Wakeword Demo
CFBundleShortVersionString: $(MARKETING_VERSION)
CFBundleVersion: $(CURRENT_PROJECT_VERSION)
NSMicrophoneUsageDescription: Used to detect the "Hey LiveKit" wake word on-device.
UILaunchScreen:
UIColorName: ""
UIApplicationSceneManifest:
UIApplicationSupportsMultipleScenes: false
UISupportedInterfaceOrientations:
- UIInterfaceOrientationPortrait
UIRequiredDeviceCapabilities:
- arm64
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: io.livekit.example.WakewordDemo
TARGETED_DEVICE_FAMILY: "1,2"
GENERATE_INFOPLIST_FILE: NO
dependencies:
- package: LiveKitWakeWord
product: LiveKitWakeWord
WakewordDemoMac:
type: application
platform: macOS
deploymentTarget: "14.0"
sources:
- path: WakewordDemo
excludes:
- "Info.plist"
- "Info-Mac.plist"
- "WakewordDemoMac.entitlements"
resources:
- path: WakewordDemo/Resources
info:
path: WakewordDemo/Info-Mac.plist
properties:
CFBundleDisplayName: Wakeword Demo
CFBundleShortVersionString: $(MARKETING_VERSION)
CFBundleVersion: $(CURRENT_PROJECT_VERSION)
LSMinimumSystemVersion: $(MACOSX_DEPLOYMENT_TARGET)
NSMicrophoneUsageDescription: Used to detect the "Hey LiveKit" wake word on-device.
NSHighResolutionCapable: true
entitlements:
path: WakewordDemo/WakewordDemoMac.entitlements
properties:
com.apple.security.app-sandbox: true
com.apple.security.device.audio-input: true
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: io.livekit.example.WakewordDemoMac
PRODUCT_NAME: WakewordDemo
GENERATE_INFOPLIST_FILE: NO
CODE_SIGN_ENTITLEMENTS: WakewordDemo/WakewordDemoMac.entitlements
ENABLE_HARDENED_RUNTIME: YES
dependencies:
- package: LiveKitWakeWord
product: LiveKitWakeWord
schemes:
WakewordDemo:
build:
targets:
WakewordDemo: all
run:
config: Debug
WakewordDemoMac:
build:
targets:
WakewordDemoMac: all
run:
config: Debug