Setting ios.non-exempt-encryption to false by default.

This commit is contained in:
Igor
2025-01-08 14:02:50 -05:00
committed by Josh Tynjala
parent 6a5908b02b
commit c2c9d0ea7c

View File

@@ -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)
{