-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathproject.yml
More file actions
80 lines (76 loc) · 2.87 KB
/
project.yml
File metadata and controls
80 lines (76 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
name: ClawTalk
options:
bundleIdPrefix: com.openclaw
deploymentTarget:
iOS: "17.0"
xcodeVersion: "16.0"
generateEmptyDirectories: true
settings:
base:
SWIFT_VERSION: "5.10"
DEVELOPMENT_TEAM: UL35UHH8Q4
CODE_SIGN_IDENTITY: ""
CODE_SIGN_STYLE: Automatic
ENABLE_PREVIEWS: YES
packages:
WhisperKit:
url: https://github.com/argmaxinc/WhisperKit.git
from: "0.9.0"
KeychainAccess:
url: https://github.com/kishikawakatsumi/KeychainAccess.git
from: "4.2.2"
MarkdownUI:
url: https://github.com/gonzalezreal/swift-markdown-ui.git
from: "2.4.0"
targets:
ClawTalk:
type: application
platform: iOS
sources:
- ClawTalk
resources:
- ClawTalk/Resources
dependencies:
- package: WhisperKit
- package: KeychainAccess
- package: MarkdownUI
settings:
base:
INFOPLIST_FILE: ClawTalk/Resources/Info.plist
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
PRODUCT_BUNDLE_IDENTIFIER: com.openclaw.clawtalk
MARKETING_VERSION: "1.0.0"
CURRENT_PROJECT_VERSION: 2
info:
path: ClawTalk/Resources/Info.plist
properties:
CFBundleDisplayName: ClawTalk
NSMicrophoneUsageDescription: "ClawTalk needs microphone access for voice input to your AI agent."
NSSpeechRecognitionUsageDescription: "ClawTalk uses speech recognition to transcribe your voice messages."
NSUserNotificationsUsageDescription: "ClawTalk sends notifications when your AI agent needs your attention."
NSLocationWhenInUseUsageDescription: "ClawTalk shares your location with your AI agent when requested."
NSContactsUsageDescription: "ClawTalk accesses contacts when your AI agent needs to look up or add a contact."
NSCalendarsFullAccessUsageDescription: "ClawTalk accesses your calendar when your AI agent needs to view or create events."
NSRemindersFullAccessUsageDescription: "ClawTalk accesses reminders when your AI agent needs to view or create reminders."
NSMotionUsageDescription: "ClawTalk accesses motion data when your AI agent requests activity or step information."
NSPhotoLibraryUsageDescription: "ClawTalk accesses your photos when your AI agent requests recent images."
NSCameraUsageDescription: "ClawTalk uses the camera when your AI agent requests a photo."
NSAppTransportSecurity:
NSAllowsArbitraryLoads: false
NSExceptionDomains:
ts.net:
NSExceptionAllowsInsecureHTTPLoads: false
NSIncludesSubdomains: true
ITSAppUsesNonExemptEncryption: false
UILaunchScreen: {}
ClawTalkTests:
type: bundle.unit-test
platform: iOS
sources:
- ClawTalkTests
dependencies:
- target: ClawTalk
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.openclaw.clawtalk.tests
GENERATE_INFOPLIST_FILE: YES