From 500100d7cc9eed0f2c53c4cc07a7bbc9d6bfc9c0 Mon Sep 17 00:00:00 2001 From: Vishwas Shashidhar Date: Tue, 14 Jan 2020 20:07:57 +0530 Subject: [PATCH] SDA-1668: add entitlements for macOS catalina (#849) --- entitlements.mac.plist | 13 +++++++++++++ package.json | 4 +++- 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 entitlements.mac.plist diff --git a/entitlements.mac.plist b/entitlements.mac.plist new file mode 100644 index 00000000..fdba46cc --- /dev/null +++ b/entitlements.mac.plist @@ -0,0 +1,13 @@ + + + + + com.apple.security.cs.allow-jit + com.apple.security.cs.allow-unsigned-executable-memory + com.apple.security.cs.allow-dyld-environment-variables + com.apple.security.device.audio-input + com.apple.security.device.camera + com.apple.security.files.user-selected.read-write + com.apple.security.network.client + + \ No newline at end of file diff --git a/package.json b/package.json index c10969b5..19221459 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,9 @@ ], "mac": { "category": "public.app-category.business", - "icon": "images/icon.icns" + "icon": "images/icon.icns", + "entitlements": "entitlements.mac.plist", + "entitlementsInherit": "entitlements.mac.plist" }, "win": { "icon": "images/icon.ico",