From 3dd7b85ebb1d16f4d231f8c027b67bd037f63ba4 Mon Sep 17 00:00:00 2001 From: auberginewly <3127221787@qq.com> Date: Sun, 10 May 2026 05:30:48 +0800 Subject: [PATCH] fix(build): remove misplaced entitlement key from mac.extendInfo com.apple.security.device.audio-input is an entitlement key and should only appear in macos.entitlements. Placing it in extendInfo writes it into Info.plist where it has no effect and is misleading. The correct entry already exists in macos.entitlements; this removes the redundant, incorrectly-placed duplicate. --- electron-builder.json5 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/electron-builder.json5 b/electron-builder.json5 index d9fee6b..372cdf7 100644 --- a/electron-builder.json5 +++ b/electron-builder.json5 @@ -52,8 +52,7 @@ "NSMicrophoneUsageDescription": "OpenScreen needs microphone access to record voice audio.", "NSCameraUsageDescription": "OpenScreen needs camera access to record webcam video.", "NSScreenCaptureUsageDescription": "OpenScreen needs screen recording permission to detect and capture windows.", - "NSCameraUseContinuityCameraDeviceType": true, - "com.apple.security.device.audio-input": true + "NSCameraUseContinuityCameraDeviceType": true } }, "linux": {