Skip to content

Commit

Permalink
Setting ios.non-exempt-encryption to false by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
pozirk authored and joshtynjala committed Jan 11, 2025
1 parent 6a5908b commit c2c9d0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/platforms/IOSPlatform.hx
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ class IOSPlatform extends PlatformTarget
}

context.IOS_LINKER_FLAGS = ["-stdlib=libc++"].concat(project.config.getArrayString("ios.linker-flags"));
context.IOS_NON_EXEMPT_ENCRYPTION = project.config.getBool("ios.non-exempt-encryption", true);
context.IOS_NON_EXEMPT_ENCRYPTION = project.config.getBool("ios.non-exempt-encryption", false);

switch (project.window.orientation)
{
Expand Down

0 comments on commit c2c9d0e

Please sign in to comment.