-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.project.yml
More file actions
175 lines (166 loc) · 6.41 KB
/
example.project.yml
File metadata and controls
175 lines (166 loc) · 6.41 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
name: iOSLobster
options:
bundleIdPrefix: com.example
deploymentTarget:
iOS: "17.0"
watchOS: "10.0"
xcodeVersion: "15.4"
generateEmptyDirectories: true
settings:
base:
SWIFT_VERSION: "5.9"
MARKETING_VERSION: "1.0.0"
CURRENT_PROJECT_VERSION: "1"
DEVELOPMENT_TEAM: "YOURTEAMID"
APP_BUNDLE_ID: "com.example.ioslobster"
APP_GROUP_IDENTIFIER: "group.com.example.ioslobster"
CODE_SIGN_STYLE: Automatic
DEAD_CODE_STRIPPING: YES
ENABLE_USER_SCRIPT_SANDBOXING: YES
SWIFT_EMIT_LOC_STRINGS: YES
packages:
OpenClawKit:
path: Packages/OpenClawKit
targets:
iOSLobster:
type: application
platform: iOS
sources:
- path: App/Sources
- path: Shared/Sources
resources:
- path: App/Sources/Resources
dependencies:
- package: OpenClawKit
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: $(APP_BUNDLE_ID)
INFOPLIST_KEY_UIApplicationSceneManifest_Generation: YES
INFOPLIST_KEY_UILaunchScreen_Generation: YES
INFOPLIST_KEY_UISupportedInterfaceOrientations: "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad: "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"
INFOPLIST_KEY_CFBundleDisplayName: "iOSLobster"
INFOPLIST_KEY_NSCameraUsageDescription: "iOSLobster uses the camera to share photos and video with your AI assistant."
INFOPLIST_KEY_NSMicrophoneUsageDescription: "iOSLobster uses the microphone to send voice messages to your AI assistant."
INFOPLIST_KEY_NSPhotoLibraryUsageDescription: "iOSLobster lets you pick photos from your library to share with your AI assistant."
INFOPLIST_KEY_NSPhotoLibraryAddUsageDescription: "iOSLobster saves generated canvas snapshots and captured photos to your library when you choose to save."
INFOPLIST_KEY_NSSpeechRecognitionUsageDescription: "iOSLobster uses speech recognition to transcribe your voice messages."
INFOPLIST_KEY_NSLocationWhenInUseUsageDescription: "iOSLobster can share your location with your AI assistant when you ask."
INFOPLIST_KEY_NSFaceIDUsageDescription: "Unlock iOSLobster securely with Face ID."
info:
path: App/Sources/Resources/Info.plist
properties:
CFBundleShortVersionString: $(MARKETING_VERSION)
CFBundleVersion: $(CURRENT_PROJECT_VERSION)
CFBundleIconName: AppIcon
UILaunchScreen: {}
UISupportedInterfaceOrientations:
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationPortraitUpsideDown
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
UISupportedInterfaceOrientations~ipad:
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationPortraitUpsideDown
- UIInterfaceOrientationLandscapeLeft
- UIInterfaceOrientationLandscapeRight
NSCameraUsageDescription: "iOSLobster uses the camera to share photos and video with your AI assistant."
NSMicrophoneUsageDescription: "iOSLobster uses the microphone to send voice messages to your AI assistant."
NSPhotoLibraryUsageDescription: "iOSLobster lets you pick photos from your library to share with your AI assistant."
NSPhotoLibraryAddUsageDescription: "iOSLobster saves generated canvas snapshots and captured photos to your library when you choose to save."
NSSpeechRecognitionUsageDescription: "iOSLobster uses speech recognition to transcribe your voice messages."
NSLocationWhenInUseUsageDescription: "iOSLobster can share your location with your AI assistant when you ask."
NSFaceIDUsageDescription: "Unlock iOSLobster securely with Face ID."
NSAppTransportSecurity:
NSAllowsLocalNetworking: true
NSAllowsArbitraryLoadsInWebContent: true
NSLocalNetworkUsageDescription: "iOSLobster needs to access your local network to connect to your gateway device."
NSBonjourServices:
- _http._tcp
- _https._tcp
ITSAppUsesNonExemptEncryption: false
entitlements:
path: App/Sources/Resources/iOSLobster.entitlements
properties:
com.apple.security.application-groups:
- $(APP_GROUP_IDENTIFIER)
iOSLobsterTests:
type: bundle.unit-test
platform: iOS
sources:
- path: App/Tests/Unit
- path: App/Tests/Integration
dependencies:
- target: iOSLobster
- package: OpenClawKit
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: $(APP_BUNDLE_ID).tests
SWIFT_ACTIVE_COMPILATION_CONDITIONS: TESTING
iOSLobsterUITests:
type: bundle.ui-testing
platform: iOS
sources:
- path: App/UITests
dependencies:
- target: iOSLobster
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: $(APP_BUNDLE_ID).uitests
iOSLobsterWatch:
type: application
platform: watchOS
sources:
- path: Watch/Sources
- path: Shared/Sources
resources:
- path: Watch/Resources
dependencies:
- package: OpenClawKit
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: $(APP_BUNDLE_ID).watch
INFOPLIST_GENERATION_MODE: GenerateFromProjectSpec
GENERATE_INFOPLIST_FILE: YES
INFOPLIST_KEY_WKApplication_IndependentWatchOnly: YES
INFOPLIST_KEY_WKCompanionAppBundleIdentifier: $(APP_BUNDLE_ID)
INFOPLIST_KEY_CFBundleDisplayName: "iOSLobster"
entitlements:
path: Watch/Resources/iOSLobsterWatch.entitlements
properties:
com.apple.security.application-groups:
- $(APP_GROUP_IDENTIFIER)
iOSLobsterWatchTests:
type: bundle.unit-test
platform: watchOS
sources:
- path: Watch/Tests
dependencies:
- target: iOSLobsterWatch
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: $(APP_BUNDLE_ID).watch.tests
SWIFT_ACTIVE_COMPILATION_CONDITIONS: TESTING
schemes:
iOSLobster:
build:
targets:
iOSLobster: all
iOSLobsterTests: [test]
run:
config: Debug
test:
config: Debug
targets:
- iOSLobsterTests
- iOSLobsterUITests
archive:
config: Release
iOSLobsterWatch:
build:
targets:
iOSLobsterWatch: all
run:
config: Debug
archive:
config: Release