Skip to content

Commit

Permalink
Remove INFOPLIST_KEY_ITSAppUsesNonExemptEncryption
Browse files Browse the repository at this point in the history
Turns out it's not a thing, so use a plist key instead. (FB13562690)
  • Loading branch information
saagarjha committed Jan 27, 2024
1 parent 0bb7382 commit 75656a0
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Configs/macOS.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ CODE_SIGN_STYLE = Automatic
COMBINE_HIDPI_IMAGES = YES
DEVELOPMENT_ASSET_PATHS = "macOS/Preview Content"
ENABLE_HARDENED_RUNTIME = YES
INFOPLIST_KEY_ITSAppUsesNonExemptEncryption = NO
INFOPLIST_FILE = $(TARGET_NAME)/Info.plist
INFOPLIST_KEY_LSApplicationCategoryType = public.app-category.productivity
LD_RUNPATH_SEARCH_PATHS = $(inherited) @executable_path/../Frameworks
PRODUCT_BUNDLE_IDENTIFIER = com.saagarjha.MacCast
Expand Down
1 change: 0 additions & 1 deletion Configs/visionOS.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
DEVELOPMENT_ASSET_PATHS = "visionOS/Preview Content"
INFOPLIST_FILE = $(TARGET_NAME)/Info.plist
INFOPLIST_KEY_ITSAppUsesNonExemptEncryption = NO
LD_RUNPATH_SEARCH_PATHS = $(inherited) @executable_path/Frameworks
PRODUCT_BUNDLE_IDENTIFIER = com.saagarjha.MacCast
PRODUCT_NAME = Ensemble
Expand Down
2 changes: 2 additions & 0 deletions MacCast.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
49226A322AE45D710044CFC9 /* RootWindowView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RootWindowView.swift; sourceTree = "<group>"; };
494DFBD02B29111C00205CAC /* Keys.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Keys.swift; sourceTree = "<group>"; };
495A8AB12B6478AE00520461 /* Bundle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Bundle.swift; sourceTree = "<group>"; };
495A8AB42B651F3D00520461 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
495E8E3A2AD5CE2400946419 /* ImageBufferView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageBufferView.swift; sourceTree = "<group>"; };
495E8E3C2AD5E6C500946419 /* SerializableConformances.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SerializableConformances.swift; sourceTree = "<group>"; };
4977168F2B29260A0048ED18 /* EventView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EventView.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -152,6 +153,7 @@
isa = PBXGroup;
children = (
49E09B5F2AD2EE5100B56CD3 /* MacCast.entitlements */,
495A8AB42B651F3D00520461 /* Info.plist */,
49E09B582AD2EE5000B56CD3 /* ContentView.swift */,
49EDAA6D2B28E58A00546EAB /* Events.swift */,
49E09BC62AD52CCE00B56CD3 /* Local.swift */,
Expand Down
8 changes: 8 additions & 0 deletions macOS/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
</dict>
</plist>
2 changes: 2 additions & 0 deletions visionOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>UIApplicationSceneManifest</key>
<dict>
<key>UIApplicationPreferredDefaultSceneSessionRole</key>
Expand Down

0 comments on commit 75656a0

Please sign in to comment.