Skip to content

Commit

Permalink
Fix project config, archiving now works as expected
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Mazanov <[email protected]>
  • Loading branch information
melonamin committed Nov 11, 2023
1 parent eb53bbd commit 11ae35c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
14 changes: 6 additions & 8 deletions Esse/Esse.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
FA2748462A374CFA00B6189C /* Intent.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA2748452A374CFA00B6189C /* Intent.swift */; };
FA3D77142AC9F36900E56CE8 /* EsseCommandLine in CopyFiles */ = {isa = PBXBuildFile; fileRef = FAB46A492AC9DF7C00DC6369 /* EsseCommandLine */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
FA580F462AAFBB0000FF53EE /* MenuCommands.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA580F452AAFBB0000FF53EE /* MenuCommands.swift */; };
FA73C8602A33DBB4004ABF10 /* EsseCore in Resources */ = {isa = PBXBuildFile; fileRef = FA73C85F2A33DBB4004ABF10 /* EsseCore */; };
FA73C8632A34AEF6004ABF10 /* EsseCore in Frameworks */ = {isa = PBXBuildFile; productRef = FA73C8622A34AEF6004ABF10 /* EsseCore */; };
FA853DCF2A33AD71007D6889 /* EsseApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA853DCE2A33AD71007D6889 /* EsseApp.swift */; };
FA853DD32A33AD72007D6889 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = FA853DD22A33AD72007D6889 /* Assets.xcassets */; };
Expand Down Expand Up @@ -309,7 +308,6 @@
buildActionMask = 2147483647;
files = (
FA853DD72A33AD72007D6889 /* Preview Assets.xcassets in Resources */,
FA73C8602A33DBB4004ABF10 /* EsseCore in Resources */,
FA853DD32A33AD72007D6889 /* Assets.xcassets in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand Down Expand Up @@ -431,7 +429,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
MACOSX_DEPLOYMENT_TARGET = 13.5;
MACOSX_DEPLOYMENT_TARGET = 14.0;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -488,7 +486,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
MACOSX_DEPLOYMENT_TARGET = 13.5;
MACOSX_DEPLOYMENT_TARGET = 14.0;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -531,7 +529,7 @@
PRODUCT_BUNDLE_IDENTIFIER = com.ameba.esse;
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = auto;
SKIP_INSTALL = YES;
SKIP_INSTALL = NO;
SUPPORTED_PLATFORMS = macosx;
SUPPORTS_MACCATALYST = NO;
SWIFT_EMIT_LOC_STRINGS = YES;
Expand Down Expand Up @@ -574,7 +572,7 @@
PRODUCT_BUNDLE_IDENTIFIER = com.ameba.esse;
PRODUCT_NAME = "$(TARGET_NAME)";
SDKROOT = auto;
SKIP_INSTALL = YES;
SKIP_INSTALL = NO;
SUPPORTED_PLATFORMS = macosx;
SUPPORTS_MACCATALYST = NO;
SWIFT_EMIT_LOC_STRINGS = YES;
Expand All @@ -588,7 +586,7 @@
CODE_SIGN_ENTITLEMENTS = EsseCommandLine/EsseCommandLine.entitlements;
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = X93LWC49WV;
ENABLE_HARDENED_RUNTIME = NO;
ENABLE_HARDENED_RUNTIME = YES;
MACOSX_DEPLOYMENT_TARGET = 14.0;
PRODUCT_BUNDLE_IDENTIFIER = com.ameba.esse.cli;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -604,7 +602,7 @@
CODE_SIGN_ENTITLEMENTS = EsseCommandLine/EsseCommandLine.entitlements;
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = X93LWC49WV;
ENABLE_HARDENED_RUNTIME = NO;
ENABLE_HARDENED_RUNTIME = YES;
MACOSX_DEPLOYMENT_TARGET = 14.0;
PRODUCT_BUNDLE_IDENTIFIER = com.ameba.esse.cli;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
2 changes: 1 addition & 1 deletion Esse/Esse/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2020 Ameba Labs. All rights reserved.</string>
<string>Copyright © 2023 Ameba Labs. All rights reserved.</string>
<key>NSServices</key>
<array>
<dict>
Expand Down
5 changes: 4 additions & 1 deletion Esse/EsseCommandLine/EsseCommandLine.entitlements
Original file line number Diff line number Diff line change
@@ -1,5 +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/>
<dict>
<key>com.apple.security.app-sandbox</key>
<true/>
</dict>
</plist>

0 comments on commit 11ae35c

Please sign in to comment.