From 4693e6c943afe73912f7cc2553592d820450c850 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Sat, 5 Oct 2024 00:05:15 +0200 Subject: [PATCH] Moved the Info.plist file under the Resources folder in the app target. --- Piper.xcodeproj/project.pbxproj | 6 +++--- Piper/{ => Resources/Plists}/Info.plist | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename Piper/{ => Resources/Plists}/Info.plist (100%) diff --git a/Piper.xcodeproj/project.pbxproj b/Piper.xcodeproj/project.pbxproj index 05cb4fe..c7de080 100644 --- a/Piper.xcodeproj/project.pbxproj +++ b/Piper.xcodeproj/project.pbxproj @@ -57,7 +57,7 @@ 46D4BF532CB08A9500FCFB84 /* Exceptions for "Piper" folder in "Piper" target */ = { isa = PBXFileSystemSynchronizedBuildFileExceptionSet; membershipExceptions = ( - Info.plist, + Resources/Plists/Info.plist, ); target = 46D4BE762CB06ED300FCFB84 /* Piper */; }; @@ -434,7 +434,7 @@ ENABLE_HARDENED_RUNTIME = YES; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; - INFOPLIST_FILE = Piper/Info.plist; + INFOPLIST_FILE = Piper/Resources/Plists/Info.plist; INFOPLIST_KEY_CFBundleDisplayName = Piper; INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.utilities"; INFOPLIST_KEY_LSUIElement = YES; @@ -466,7 +466,7 @@ ENABLE_HARDENED_RUNTIME = YES; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; - INFOPLIST_FILE = Piper/Info.plist; + INFOPLIST_FILE = Piper/Resources/Plists/Info.plist; INFOPLIST_KEY_CFBundleDisplayName = Piper; INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.utilities"; INFOPLIST_KEY_LSUIElement = YES; diff --git a/Piper/Info.plist b/Piper/Resources/Plists/Info.plist similarity index 100% rename from Piper/Info.plist rename to Piper/Resources/Plists/Info.plist