Skip to content

Commit e5ec3fe

Browse files
committed
feat(stage-tamagotchi): added entitlements and builder configs for microphone access
1 parent 7d43275 commit e5ec3fe

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

apps/stage-tamagotchi/build/entitlements.mac.plist

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,17 @@
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
44
<dict>
5-
<key>com.apple.security.cs.allow-jit</key>
6-
<true/>
75
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
86
<true/>
7+
<key>com.apple.security.cs.allow-jit</key>
8+
<true/>
99
<key>com.apple.security.cs.allow-dyld-environment-variables</key>
1010
<true/>
11+
<key>com.apple.security.device.camera</key>
12+
<true/>
13+
<key>com.apple.security.device.microphone</key>
14+
<true/>
15+
<key>com.apple.security.device.audio-input</key>
16+
<true/>
1117
</dict>
1218
</plist>

apps/stage-tamagotchi/electron-builder.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ nsis:
3838
mac:
3939
entitlementsInherit: build/entitlements.mac.plist
4040
extendInfo:
41-
- NSDocumentsFolderUsageDescription: Application requests access to the user's Documents folder.
42-
- NSDownloadsFolderUsageDescription: Application requests access to the user's Downloads folder.
41+
- NSMicrophoneUsageDescription: 'AIRI requires microphone access for voice interaction'
42+
- NSCameraUsageDescription: 'AIRI requires camera access for vision understanding'
4343
notarize: false
4444
executableName: airi
4545
dmg:

0 commit comments

Comments
 (0)