We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following entitlements.plist file is required for signed and notarized apps.
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
The text was updated successfully, but these errors were encountered: