Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Need to provide an entitlements plist file for JavaAppLauncher #80

Open
jlholt opened this issue Mar 15, 2021 · 0 comments
Open

Need to provide an entitlements plist file for JavaAppLauncher #80

jlholt opened this issue Mar 15, 2021 · 0 comments

Comments

@jlholt
Copy link

jlholt commented Mar 15, 2021

The following entitlements.plist file is required for signed and notarized apps.

<?xml version="1.0" encoding="UTF-8"?>
<plist version="1.0">
	<dict>
		<key>com.apple.security.cs.disable-library-validation</key>
			<true/>
		<key>com.apple.security.cs.allow-jit</key>
			<true/>
		<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
			<true/>
		<key>com.apple.security.cs.disable-executable-page-protection</key>
			<true/>
	</dict>
</plist>

You don't have to add code to do the signing but it would be helpful if the docs describe how to add the entitlement to a signed launcher executable:

codesign options --entitlements entitlements.plist JavaAppLauncher

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant