OSX Error when signing Adobe AIR hardened Runtime

79 Views Asked by At

I am having trouble with my Mac Adobe AIR app only after signing with hardening the runtime. If I don't harden the runtime, it works fine. The program may start but will eventually generate a memory fault.

1

There are 1 best solutions below

3
On

The solution I found was to add the following to the entitlements file:

<key>com.apple.security.cs.allow-jit</key>
<true/>
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>

I hope this helps others.