-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
76 lines (72 loc) · 2.3 KB
/
project.yml
File metadata and controls
76 lines (72 loc) · 2.3 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
name: OpenGlass
options:
bundleIdPrefix: com.openglass
deploymentTarget:
iOS: "17.0"
xcodeVersion: "16.0"
generateEmptyDirectories: true
packages:
MetaWearablesDAT:
url: https://github.com/facebook/meta-wearables-dat-ios
exactVersion: "0.4.0"
settings:
base:
SWIFT_VERSION: "5.9"
targets:
OpenGlass:
type: application
platform: iOS
sources:
- path: OpenGlass
excludes:
- "Secrets.example.swift"
dependencies:
- package: MetaWearablesDAT
product: MWDATCore
- package: MetaWearablesDAT
product: MWDATCamera
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.michaeldarlington.openglass
MARKETING_VERSION: "1.0"
CURRENT_PROJECT_VERSION: "1"
info:
path: OpenGlass/Info.plist
properties:
CFBundleURLTypes:
- CFBundleTypeRole: Editor
CFBundleURLName: "$(PRODUCT_BUNDLE_IDENTIFIER)"
CFBundleURLSchemes:
- openglass
UIBackgroundModes:
- bluetooth-peripheral
- external-accessory
UISupportedExternalAccessoryProtocols:
- com.meta.ar.wearable
NSAppTransportSecurity:
NSAllowsLocalNetworking: true
NSCameraUsageDescription: "OpenGlass needs camera access to capture frames for AI analysis."
NSMicrophoneUsageDescription: "OpenGlass needs microphone access for voice interaction with Gemini."
NSLocalNetworkUsageDescription: "OpenGlass uses the local network to connect to OpenClaw on your Mac."
NSBonjourServices:
- _openclaw._tcp
NSBluetoothAlwaysUsageDescription: "OpenGlass needs Bluetooth to connect to Meta Ray-Ban Smart Glasses."
UILaunchScreen: {}
MWDAT:
AppLinkURLScheme: "openglass://"
MetaAppID: "$(META_APP_ID)"
ClientToken: "$(META_CLIENT_TOKEN)"
TeamID: "$(DEVELOPMENT_TEAM)"
OpenGlassTests:
type: bundle.unit-test
platform: iOS
sources:
- path: OpenGlassTests
dependencies:
- target: OpenGlass
settings:
base:
GENERATE_INFOPLIST_FILE: true
PRODUCT_BUNDLE_IDENTIFIER: com.openglass.tests
TEST_HOST: "$(BUILT_PRODUCTS_DIR)/OpenGlass.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/OpenGlass"
BUNDLE_LOADER: "$(TEST_HOST)"