From d9d72774d8580630c188cfbc0f2e94990e7ee94e Mon Sep 17 00:00:00 2001 From: Clement Date: Fri, 6 Jul 2018 15:51:40 -0700 Subject: [PATCH] Add exception for backtrace requests --- cmake/modules/MacOSXBundleInfo.plist.in | 20 ++++++++++++++++++++ interface/CMakeLists.txt | 2 ++ 2 files changed, 22 insertions(+) diff --git a/cmake/modules/MacOSXBundleInfo.plist.in b/cmake/modules/MacOSXBundleInfo.plist.in index a06fac092f..c772436df7 100644 --- a/cmake/modules/MacOSXBundleInfo.plist.in +++ b/cmake/modules/MacOSXBundleInfo.plist.in @@ -45,5 +45,25 @@ NSHighResolutionCapable + NSAppTransportSecurity + + NSExceptionDomains + + ${MACOSX_BUNDLE_BACKTRACE_DOMAIN_NAME} + + NSExceptionRequiresForwardSecrecy + + + NSIncludesSubdomains + + + NSTemporaryExceptionAllowsInsecureHTTPLoads + + + NSTemporaryExceptionMinimumTLSVersion + TLSv1.2 + + + diff --git a/interface/CMakeLists.txt b/interface/CMakeLists.txt index ea30909a08..f79c2c0d6f 100644 --- a/interface/CMakeLists.txt +++ b/interface/CMakeLists.txt @@ -127,6 +127,8 @@ if (APPLE) endif () endif () + set(MACOSX_BUNDLE_BACKTRACE_DOMAIN_NAME highfidelity.sp.backtrace.io) + # set how the icon shows up in the Info.plist file set(MACOSX_BUNDLE_ICON_FILE "${INTERFACE_ICON_FILENAME}")