Skip to content

Commit 281c082

Browse files
Remove autofill extension from mas builds
1 parent 60a2716 commit 281c082

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

apps/desktop/macos/autofill-extension/autofill_extension.entitlements

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,5 @@
88
<array>
99
<string>LTZ2PFU5D6.com.bitwarden.desktop</string>
1010
</array>
11-
<key>com.apple.developer.authentication-services.autofill-credential-provider</key>
12-
<true/>
1311
</dict>
1412
</plist>

apps/desktop/resources/entitlements.mas.plist

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,5 @@
3535
<string>/Library/Application Support/Vivaldi/NativeMessagingHosts/</string>
3636
<string>/Library/Application Support/Zen/NativeMessagingHosts/</string>
3737
</array>
38-
<key>com.apple.developer.authentication-services.autofill-credential-provider</key>
39-
<true/>
4038
</dict>
4139
</plist>

apps/desktop/scripts/after-sign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ async function run(context) {
1616
const appPath = `${context.appOutDir}/${appName}.app`;
1717
const macBuild = context.electronPlatformName === "darwin";
1818
const copySafariExtension = ["darwin", "mas"].includes(context.electronPlatformName);
19-
const copyAutofillExtension = ["darwin", "mas"].includes(context.electronPlatformName);
19+
const copyAutofillExtension = ["darwin"].includes(context.electronPlatformName); // Disabled for mas builds
2020

2121
let shouldResign = false;
2222

0 commit comments

Comments
 (0)