Skip to content

Commit 0f0597f

Browse files
committed
DiffableTextAppXUIKit: added Mac Catalyst deployment.
1 parent 3b53b3a commit 0f0597f

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>com.apple.security.app-sandbox</key>
6+
<true/>
7+
<key>com.apple.security.network.client</key>
8+
<true/>
9+
</dict>
10+
</plist>

Examples/DiffableTextAppXUIKit/DiffableTextAppXUIKit.xcodeproj/project.pbxproj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
5527C21227AA6C6A0098546E /* Interval.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Interval.swift; sourceTree = "<group>"; };
4343
55781F2C27AD39B0003D4252 /* Scroller.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Scroller.swift; sourceTree = "<group>"; };
4444
55781F3027AD4500003D4252 /* Storage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Storage.swift; sourceTree = "<group>"; };
45+
557D9AB427F98C14008C317B /* DiffableTextAppXUIKit.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DiffableTextAppXUIKit.entitlements; sourceTree = "<group>"; };
4546
557DAF1C27BA415500D9F0E5 /* PatternScreenExamples.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PatternScreenExamples.swift; sourceTree = "<group>"; };
4647
557DAF2027BA493200D9F0E5 /* Action.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Action.swift; sourceTree = "<group>"; };
4748
557DAF2227BA4AE600D9F0E5 /* PatternScreenActions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PatternScreenActions.swift; sourceTree = "<group>"; };
@@ -101,6 +102,7 @@
101102
5589A19727A7E3E30000F04A = {
102103
isa = PBXGroup;
103104
children = (
105+
557D9AB427F98C14008C317B /* DiffableTextAppXUIKit.entitlements */,
104106
557F7FB827A81116001908D6 /* Packages */,
105107
5589A1A227A7E3E30000F04A /* App */,
106108
5589A1A127A7E3E30000F04A /* Products */,
@@ -444,6 +446,7 @@
444446
buildSettings = {
445447
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
446448
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
449+
CODE_SIGN_ENTITLEMENTS = DiffableTextAppXUIKit.entitlements;
447450
CODE_SIGN_STYLE = Automatic;
448451
CURRENT_PROJECT_VERSION = 1;
449452
DEVELOPMENT_ASSET_PATHS = "\"App/Assets/Preview Content\"";
@@ -455,13 +458,15 @@
455458
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
456459
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
457460
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
461+
IPHONEOS_DEPLOYMENT_TARGET = 15.2;
458462
LD_RUNPATH_SEARCH_PATHS = (
459463
"$(inherited)",
460464
"@executable_path/Frameworks",
461465
);
462466
MARKETING_VERSION = 1.0;
463467
PRODUCT_BUNDLE_IDENTIFIER = com.oscbyspro.DiffableTextAppXUIKit;
464468
PRODUCT_NAME = "$(TARGET_NAME)";
469+
SUPPORTS_MACCATALYST = YES;
465470
SWIFT_EMIT_LOC_STRINGS = YES;
466471
SWIFT_VERSION = 5.0;
467472
TARGETED_DEVICE_FAMILY = "1,2";
@@ -473,6 +478,7 @@
473478
buildSettings = {
474479
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
475480
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
481+
CODE_SIGN_ENTITLEMENTS = DiffableTextAppXUIKit.entitlements;
476482
CODE_SIGN_STYLE = Automatic;
477483
CURRENT_PROJECT_VERSION = 1;
478484
DEVELOPMENT_ASSET_PATHS = "\"App/Assets/Preview Content\"";
@@ -484,13 +490,15 @@
484490
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
485491
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
486492
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
493+
IPHONEOS_DEPLOYMENT_TARGET = 15.2;
487494
LD_RUNPATH_SEARCH_PATHS = (
488495
"$(inherited)",
489496
"@executable_path/Frameworks",
490497
);
491498
MARKETING_VERSION = 1.0;
492499
PRODUCT_BUNDLE_IDENTIFIER = com.oscbyspro.DiffableTextAppXUIKit;
493500
PRODUCT_NAME = "$(TARGET_NAME)";
501+
SUPPORTS_MACCATALYST = YES;
494502
SWIFT_EMIT_LOC_STRINGS = YES;
495503
SWIFT_VERSION = 5.0;
496504
TARGETED_DEVICE_FAMILY = "1,2";

0 commit comments

Comments
 (0)