Add exempt encryption flag to Info.plist

This commit is contained in:
Sami Samhuri 2023-02-05 15:44:53 -08:00
parent 07355e8eb5
commit 4fa966593e
No known key found for this signature in database
GPG key ID: 4B4195422742FC16
2 changed files with 12 additions and 0 deletions

View file

@ -21,6 +21,7 @@
96372F78299031590022FDD5 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
96372F7B299031590022FDD5 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = "<group>"; };
96372F82299035BD0022FDD5 /* CloudView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CloudView.swift; sourceTree = "<group>"; };
96C9DB53299076E200C13960 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
@ -53,6 +54,7 @@
96372F73299031580022FDD5 /* MemoryTree */ = {
isa = PBXGroup;
children = (
96C9DB53299076E200C13960 /* Info.plist */,
96372F74299031580022FDD5 /* MemoryTreeApp.swift */,
96372F76299031580022FDD5 /* ContentView.swift */,
96372F82299035BD0022FDD5 /* CloudView.swift */,
@ -278,6 +280,7 @@
DEVELOPMENT_TEAM = QE4PFXDL4H;
ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = MemoryTree/Info.plist;
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
@ -307,6 +310,7 @@
DEVELOPMENT_TEAM = QE4PFXDL4H;
ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = MemoryTree/Info.plist;
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
INFOPLIST_KEY_UILaunchScreen_Generation = YES;

8
MemoryTree/Info.plist Normal file
View file

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