Skip to content

Commit b999528

Browse files
authored
Merge pull request #134 from edwardaux/carthage-support
Carthage support
2 parents e9a57bc + 0c6bf2e commit b999528

File tree

4 files changed

+311
-1
lines changed

4 files changed

+311
-1
lines changed

DeepLinkKit.xcodeproj/project.pbxproj

Lines changed: 196 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,27 @@
2929
62EE96F61B570B10003D7564 /* DPLProductDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = DE025EB01A5F0D37007C4F3A /* DPLProductDataSource.m */; };
3030
62EE96F71B570B13003D7564 /* DPLProduct.m in Sources */ = {isa = PBXBuildFile; fileRef = DE87B1F01A5DF49F00204A35 /* DPLProduct.m */; };
3131
62EE96F81B570B16003D7564 /* DPLProductTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DEAD327A19E079D3003C8D65 /* DPLProductTableViewController.m */; };
32+
BFDB96F71F3C0011001AE303 /* NSString+DPLTrim.m in Sources */ = {isa = PBXBuildFile; fileRef = DE16E91B1A42720D00077E18 /* NSString+DPLTrim.m */; };
33+
BFDB96F81F3C0011001AE303 /* NSString+DPLQuery.m in Sources */ = {isa = PBXBuildFile; fileRef = DE058E081A3B46F500147C04 /* NSString+DPLQuery.m */; };
34+
BFDB96F91F3C0011001AE303 /* NSString+DPLJSON.m in Sources */ = {isa = PBXBuildFile; fileRef = DE3E61091A3B4485008D6DFC /* NSString+DPLJSON.m */; };
35+
BFDB96FA1F3C0011001AE303 /* NSObject+DPLJSONObject.m in Sources */ = {isa = PBXBuildFile; fileRef = DECB32511A87E94B0071C76E /* NSObject+DPLJSONObject.m */; };
36+
BFDB96FB1F3C0011001AE303 /* UINavigationController+DPLRouting.m in Sources */ = {isa = PBXBuildFile; fileRef = DE1B5F591CB301300086227F /* UINavigationController+DPLRouting.m */; };
37+
BFDB96FC1F3C0011001AE303 /* DPLMatchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 83D34C3C1B03ECAD00BA6EF1 /* DPLMatchResult.m */; };
38+
BFDB96FD1F3C0011001AE303 /* DPLRegularExpression.m in Sources */ = {isa = PBXBuildFile; fileRef = 83D34C3E1B03ECAD00BA6EF1 /* DPLRegularExpression.m */; };
39+
BFDB96FE1F3C0011001AE303 /* DPLDeepLinkRouter.m in Sources */ = {isa = PBXBuildFile; fileRef = DE16E9211A42882F00077E18 /* DPLDeepLinkRouter.m */; };
40+
BFDB96FF1F3C0011001AE303 /* DPLRouteHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DEAC40711A5DA86A004A9095 /* DPLRouteHandler.m */; };
41+
BFDB97001F3C0011001AE303 /* DPLRouteMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = DE16E9351A4289D500077E18 /* DPLRouteMatcher.m */; };
42+
BFDB97011F3C0011001AE303 /* DPLDeepLink+AppLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = DEA55ADC1A5F1A0700C312F5 /* DPLDeepLink+AppLinks.m */; };
43+
BFDB97021F3C0011001AE303 /* DPLMutableDeepLink+AppLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = DECB324C1A87C6750071C76E /* DPLMutableDeepLink+AppLinks.m */; };
44+
BFDB97031F3C0011001AE303 /* DPLDeepLink.m in Sources */ = {isa = PBXBuildFile; fileRef = DE058E0D1A3B484A00147C04 /* DPLDeepLink.m */; };
45+
BFDB97041F3C0011001AE303 /* DPLMutableDeepLink.m in Sources */ = {isa = PBXBuildFile; fileRef = DECB324A1A87C64E0071C76E /* DPLMutableDeepLink.m */; };
46+
BFDB97051F3C0048001AE303 /* DeepLinkKit.h in Headers */ = {isa = PBXBuildFile; fileRef = DEB4EDBD1A4A726200F31D14 /* DeepLinkKit.h */; settings = {ATTRIBUTES = (Public, ); }; };
47+
BFDB97061F3C0048001AE303 /* DPLTargetViewControllerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = DE99EF781A3B83D100CE3449 /* DPLTargetViewControllerProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; };
48+
BFDB97071F3C0048001AE303 /* DPLErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = DEAC406E1A5D97EE004A9095 /* DPLErrors.h */; settings = {ATTRIBUTES = (Public, ); }; };
49+
BFDB97081F3C0048001AE303 /* DPLDeepLinkRouter.h in Headers */ = {isa = PBXBuildFile; fileRef = DE16E9201A42882F00077E18 /* DPLDeepLinkRouter.h */; settings = {ATTRIBUTES = (Public, ); }; };
50+
BFDB97091F3C0048001AE303 /* DPLRouteHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DEAC40701A5DA86A004A9095 /* DPLRouteHandler.h */; settings = {ATTRIBUTES = (Public, ); }; };
51+
BFDB970A1F3C0048001AE303 /* DPLDeepLink.h in Headers */ = {isa = PBXBuildFile; fileRef = DE058E0C1A3B484A00147C04 /* DPLDeepLink.h */; settings = {ATTRIBUTES = (Public, ); }; };
52+
BFDB970B1F3C0048001AE303 /* DPLMutableDeepLink.h in Headers */ = {isa = PBXBuildFile; fileRef = DECB32491A87C64E0071C76E /* DPLMutableDeepLink.h */; settings = {ATTRIBUTES = (Public, ); }; };
3253
C63116DB33AD849960B2EA55 /* Pods_SenderDemo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4EA7EE926AA6053C8315A931 /* Pods_SenderDemo.framework */; };
3354
DE025EB11A5F0D37007C4F3A /* DPLProductDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = DE025EB01A5F0D37007C4F3A /* DPLProductDataSource.m */; };
3455
DE058E0A1A3B46FD00147C04 /* NSString_DPLQuerySpec.m in Sources */ = {isa = PBXBuildFile; fileRef = DE058E091A3B46FD00147C04 /* NSString_DPLQuerySpec.m */; };
@@ -107,6 +128,8 @@
107128
A12E3C55EEAB8A1FC1C6C397 /* Pods-Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig"; sourceTree = "<group>"; };
108129
A9F173BA2E66B42CE6D24BF4 /* Pods_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
109130
B08420F70F2F29CEBA0D7B49 /* Pods-ReceiverDemoSwift.test.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReceiverDemoSwift.test.xcconfig"; path = "Pods/Target Support Files/Pods-ReceiverDemoSwift/Pods-ReceiverDemoSwift.test.xcconfig"; sourceTree = "<group>"; };
131+
BFDB96EE1F3BFF8E001AE303 /* DeepLinkKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = DeepLinkKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
132+
BFDB96F11F3BFF8E001AE303 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
110133
C7BB11C353B6743FCCEC7DAA /* Pods-SenderDemo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SenderDemo.release.xcconfig"; path = "Pods/Target Support Files/Pods-SenderDemo/Pods-SenderDemo.release.xcconfig"; sourceTree = "<group>"; };
111134
DE025EAF1A5F0D37007C4F3A /* DPLProductDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DPLProductDataSource.h; sourceTree = "<group>"; };
112135
DE025EB01A5F0D37007C4F3A /* DPLProductDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DPLProductDataSource.m; sourceTree = "<group>"; };
@@ -229,6 +252,13 @@
229252
);
230253
runOnlyForDeploymentPostprocessing = 0;
231254
};
255+
BFDB96EA1F3BFF8E001AE303 /* Frameworks */ = {
256+
isa = PBXFrameworksBuildPhase;
257+
buildActionMask = 2147483647;
258+
files = (
259+
);
260+
runOnlyForDeploymentPostprocessing = 0;
261+
};
232262
DEDB148A1A3F944D00A837F8 /* Frameworks */ = {
233263
isa = PBXFrameworksBuildPhase;
234264
buildActionMask = 2147483647;
@@ -279,6 +309,7 @@
279309
6003F5AE195388D20070C39A /* Tests.xctest */,
280310
DEDB148D1A3F944D00A837F8 /* SenderDemo.app */,
281311
62335DD61B57003300E3818C /* ReceiverDemoSwift.app */,
312+
BFDB96EE1F3BFF8E001AE303 /* DeepLinkKit.framework */,
282313
);
283314
name = Products;
284315
sourceTree = "<group>";
@@ -504,6 +535,7 @@
504535
DE5DD32C19E0643F007FD439 /* DeepLinkKit */ = {
505536
isa = PBXGroup;
506537
children = (
538+
BFDB96F11F3BFF8E001AE303 /* Info.plist */,
507539
DEB4EDBD1A4A726200F31D14 /* DeepLinkKit.h */,
508540
DEC308D91CAD70A5006828A5 /* DeepLinkKit_Private.h */,
509541
DE4128901A8BBE500089DAA2 /* AppLinks.h */,
@@ -673,6 +705,23 @@
673705
};
674706
/* End PBXGroup section */
675707

708+
/* Begin PBXHeadersBuildPhase section */
709+
BFDB96EB1F3BFF8E001AE303 /* Headers */ = {
710+
isa = PBXHeadersBuildPhase;
711+
buildActionMask = 2147483647;
712+
files = (
713+
BFDB97071F3C0048001AE303 /* DPLErrors.h in Headers */,
714+
BFDB97051F3C0048001AE303 /* DeepLinkKit.h in Headers */,
715+
BFDB97081F3C0048001AE303 /* DPLDeepLinkRouter.h in Headers */,
716+
BFDB97091F3C0048001AE303 /* DPLRouteHandler.h in Headers */,
717+
BFDB97061F3C0048001AE303 /* DPLTargetViewControllerProtocol.h in Headers */,
718+
BFDB970B1F3C0048001AE303 /* DPLMutableDeepLink.h in Headers */,
719+
BFDB970A1F3C0048001AE303 /* DPLDeepLink.h in Headers */,
720+
);
721+
runOnlyForDeploymentPostprocessing = 0;
722+
};
723+
/* End PBXHeadersBuildPhase section */
724+
676725
/* Begin PBXNativeTarget section */
677726
6003F589195388D20070C39A /* ReceiverDemo */ = {
678727
isa = PBXNativeTarget;
@@ -736,6 +785,23 @@
736785
productReference = 62335DD61B57003300E3818C /* ReceiverDemoSwift.app */;
737786
productType = "com.apple.product-type.application";
738787
};
788+
BFDB96ED1F3BFF8E001AE303 /* DeepLinkKit */ = {
789+
isa = PBXNativeTarget;
790+
buildConfigurationList = BFDB96F61F3BFF8E001AE303 /* Build configuration list for PBXNativeTarget "DeepLinkKit" */;
791+
buildPhases = (
792+
BFDB96E91F3BFF8E001AE303 /* Sources */,
793+
BFDB96EA1F3BFF8E001AE303 /* Frameworks */,
794+
BFDB96EB1F3BFF8E001AE303 /* Headers */,
795+
);
796+
buildRules = (
797+
);
798+
dependencies = (
799+
);
800+
name = DeepLinkKit;
801+
productName = DeepLinkKit;
802+
productReference = BFDB96EE1F3BFF8E001AE303 /* DeepLinkKit.framework */;
803+
productType = "com.apple.product-type.framework";
804+
};
739805
DEDB148C1A3F944D00A837F8 /* SenderDemo */ = {
740806
isa = PBXNativeTarget;
741807
buildConfigurationList = DEDB14AD1A3F944E00A837F8 /* Build configuration list for PBXNativeTarget "SenderDemo" */;
@@ -773,6 +839,10 @@
773839
62335DD51B57003300E3818C = {
774840
CreatedOnToolsVersion = 6.4;
775841
};
842+
BFDB96ED1F3BFF8E001AE303 = {
843+
CreatedOnToolsVersion = 8.3.3;
844+
ProvisioningStyle = Automatic;
845+
};
776846
DEDB148C1A3F944D00A837F8 = {
777847
CreatedOnToolsVersion = 6.1;
778848
};
@@ -795,6 +865,7 @@
795865
62335DD51B57003300E3818C /* ReceiverDemoSwift */,
796866
DEDB148C1A3F944D00A837F8 /* SenderDemo */,
797867
6003F5AD195388D20070C39A /* Tests */,
868+
BFDB96ED1F3BFF8E001AE303 /* DeepLinkKit */,
798869
);
799870
};
800871
/* End PBXProject section */
@@ -1085,6 +1156,27 @@
10851156
);
10861157
runOnlyForDeploymentPostprocessing = 0;
10871158
};
1159+
BFDB96E91F3BFF8E001AE303 /* Sources */ = {
1160+
isa = PBXSourcesBuildPhase;
1161+
buildActionMask = 2147483647;
1162+
files = (
1163+
BFDB97011F3C0011001AE303 /* DPLDeepLink+AppLinks.m in Sources */,
1164+
BFDB96FB1F3C0011001AE303 /* UINavigationController+DPLRouting.m in Sources */,
1165+
BFDB96F71F3C0011001AE303 /* NSString+DPLTrim.m in Sources */,
1166+
BFDB97031F3C0011001AE303 /* DPLDeepLink.m in Sources */,
1167+
BFDB96F91F3C0011001AE303 /* NSString+DPLJSON.m in Sources */,
1168+
BFDB97001F3C0011001AE303 /* DPLRouteMatcher.m in Sources */,
1169+
BFDB96FE1F3C0011001AE303 /* DPLDeepLinkRouter.m in Sources */,
1170+
BFDB96FD1F3C0011001AE303 /* DPLRegularExpression.m in Sources */,
1171+
BFDB96FC1F3C0011001AE303 /* DPLMatchResult.m in Sources */,
1172+
BFDB97041F3C0011001AE303 /* DPLMutableDeepLink.m in Sources */,
1173+
BFDB96F81F3C0011001AE303 /* NSString+DPLQuery.m in Sources */,
1174+
BFDB96FF1F3C0011001AE303 /* DPLRouteHandler.m in Sources */,
1175+
BFDB96FA1F3C0011001AE303 /* NSObject+DPLJSONObject.m in Sources */,
1176+
BFDB97021F3C0011001AE303 /* DPLMutableDeepLink+AppLinks.m in Sources */,
1177+
);
1178+
runOnlyForDeploymentPostprocessing = 0;
1179+
};
10881180
DEDB14891A3F944D00A837F8 /* Sources */ = {
10891181
isa = PBXSourcesBuildPhase;
10901182
buildActionMask = 2147483647;
@@ -1353,6 +1445,101 @@
13531445
};
13541446
name = Release;
13551447
};
1448+
BFDB96F31F3BFF8E001AE303 /* Debug */ = {
1449+
isa = XCBuildConfiguration;
1450+
buildSettings = {
1451+
CLANG_ANALYZER_NONNULL = YES;
1452+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
1453+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1454+
CLANG_WARN_INFINITE_RECURSION = YES;
1455+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
1456+
CLANG_WARN_UNREACHABLE_CODE = YES;
1457+
CODE_SIGN_IDENTITY = "";
1458+
CURRENT_PROJECT_VERSION = 1;
1459+
DEBUG_INFORMATION_FORMAT = dwarf;
1460+
DEFINES_MODULE = YES;
1461+
DYLIB_COMPATIBILITY_VERSION = 1;
1462+
DYLIB_CURRENT_VERSION = 1;
1463+
DYLIB_INSTALL_NAME_BASE = "@rpath";
1464+
ENABLE_STRICT_OBJC_MSGSEND = YES;
1465+
GCC_NO_COMMON_BLOCKS = YES;
1466+
INFOPLIST_FILE = DeepLinkKit/Info.plist;
1467+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1468+
IPHONEOS_DEPLOYMENT_TARGET = 10.3;
1469+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1470+
MTL_ENABLE_DEBUG_INFO = YES;
1471+
PRODUCT_BUNDLE_IDENTIFIER = com.usebutton.DeepLinkKit;
1472+
PRODUCT_NAME = "$(TARGET_NAME)";
1473+
SKIP_INSTALL = YES;
1474+
VERSIONING_SYSTEM = "apple-generic";
1475+
VERSION_INFO_PREFIX = "";
1476+
};
1477+
name = Debug;
1478+
};
1479+
BFDB96F41F3BFF8E001AE303 /* Test */ = {
1480+
isa = XCBuildConfiguration;
1481+
buildSettings = {
1482+
CLANG_ANALYZER_NONNULL = YES;
1483+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
1484+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1485+
CLANG_WARN_INFINITE_RECURSION = YES;
1486+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
1487+
CLANG_WARN_UNREACHABLE_CODE = YES;
1488+
CODE_SIGN_IDENTITY = "";
1489+
COPY_PHASE_STRIP = NO;
1490+
CURRENT_PROJECT_VERSION = 1;
1491+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
1492+
DEFINES_MODULE = YES;
1493+
DYLIB_COMPATIBILITY_VERSION = 1;
1494+
DYLIB_CURRENT_VERSION = 1;
1495+
DYLIB_INSTALL_NAME_BASE = "@rpath";
1496+
ENABLE_STRICT_OBJC_MSGSEND = YES;
1497+
GCC_NO_COMMON_BLOCKS = YES;
1498+
INFOPLIST_FILE = DeepLinkKit/Info.plist;
1499+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1500+
IPHONEOS_DEPLOYMENT_TARGET = 10.3;
1501+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1502+
MTL_ENABLE_DEBUG_INFO = NO;
1503+
PRODUCT_BUNDLE_IDENTIFIER = com.usebutton.DeepLinkKit;
1504+
PRODUCT_NAME = "$(TARGET_NAME)";
1505+
SKIP_INSTALL = YES;
1506+
VERSIONING_SYSTEM = "apple-generic";
1507+
VERSION_INFO_PREFIX = "";
1508+
};
1509+
name = Test;
1510+
};
1511+
BFDB96F51F3BFF8E001AE303 /* Release */ = {
1512+
isa = XCBuildConfiguration;
1513+
buildSettings = {
1514+
CLANG_ANALYZER_NONNULL = YES;
1515+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
1516+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1517+
CLANG_WARN_INFINITE_RECURSION = YES;
1518+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
1519+
CLANG_WARN_UNREACHABLE_CODE = YES;
1520+
CODE_SIGN_IDENTITY = "";
1521+
COPY_PHASE_STRIP = NO;
1522+
CURRENT_PROJECT_VERSION = 1;
1523+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
1524+
DEFINES_MODULE = YES;
1525+
DYLIB_COMPATIBILITY_VERSION = 1;
1526+
DYLIB_CURRENT_VERSION = 1;
1527+
DYLIB_INSTALL_NAME_BASE = "@rpath";
1528+
ENABLE_STRICT_OBJC_MSGSEND = YES;
1529+
GCC_NO_COMMON_BLOCKS = YES;
1530+
INFOPLIST_FILE = DeepLinkKit/Info.plist;
1531+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1532+
IPHONEOS_DEPLOYMENT_TARGET = 10.3;
1533+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1534+
MTL_ENABLE_DEBUG_INFO = NO;
1535+
PRODUCT_BUNDLE_IDENTIFIER = com.usebutton.DeepLinkKit;
1536+
PRODUCT_NAME = "$(TARGET_NAME)";
1537+
SKIP_INSTALL = YES;
1538+
VERSIONING_SYSTEM = "apple-generic";
1539+
VERSION_INFO_PREFIX = "";
1540+
};
1541+
name = Release;
1542+
};
13561543
DEA2AD611A4A8B0100F32289 /* Test */ = {
13571544
isa = XCBuildConfiguration;
13581545
buildSettings = {
@@ -1535,6 +1722,15 @@
15351722
defaultConfigurationIsVisible = 0;
15361723
defaultConfigurationName = Release;
15371724
};
1725+
BFDB96F61F3BFF8E001AE303 /* Build configuration list for PBXNativeTarget "DeepLinkKit" */ = {
1726+
isa = XCConfigurationList;
1727+
buildConfigurations = (
1728+
BFDB96F31F3BFF8E001AE303 /* Debug */,
1729+
BFDB96F41F3BFF8E001AE303 /* Test */,
1730+
BFDB96F51F3BFF8E001AE303 /* Release */,
1731+
);
1732+
defaultConfigurationIsVisible = 0;
1733+
};
15381734
DEDB14AD1A3F944E00A837F8 /* Build configuration list for PBXNativeTarget "SenderDemo" */ = {
15391735
isa = XCConfigurationList;
15401736
buildConfigurations = (
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "0830"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "BFDB96ED1F3BFF8E001AE303"
18+
BuildableName = "DeepLinkKit.framework"
19+
BlueprintName = "DeepLinkKit"
20+
ReferencedContainer = "container:DeepLinkKit.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
</BuildActionEntries>
24+
</BuildAction>
25+
<TestAction
26+
buildConfiguration = "Debug"
27+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
shouldUseLaunchSchemeArgsEnv = "YES">
30+
<Testables>
31+
</Testables>
32+
<AdditionalOptions>
33+
</AdditionalOptions>
34+
</TestAction>
35+
<LaunchAction
36+
buildConfiguration = "Debug"
37+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
38+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
39+
launchStyle = "0"
40+
useCustomWorkingDirectory = "NO"
41+
ignoresPersistentStateOnLaunch = "NO"
42+
debugDocumentVersioning = "YES"
43+
debugServiceExtension = "internal"
44+
allowLocationSimulation = "YES">
45+
<MacroExpansion>
46+
<BuildableReference
47+
BuildableIdentifier = "primary"
48+
BlueprintIdentifier = "BFDB96ED1F3BFF8E001AE303"
49+
BuildableName = "DeepLinkKit.framework"
50+
BlueprintName = "DeepLinkKit"
51+
ReferencedContainer = "container:DeepLinkKit.xcodeproj">
52+
</BuildableReference>
53+
</MacroExpansion>
54+
<AdditionalOptions>
55+
</AdditionalOptions>
56+
</LaunchAction>
57+
<ProfileAction
58+
buildConfiguration = "Release"
59+
shouldUseLaunchSchemeArgsEnv = "YES"
60+
savedToolIdentifier = ""
61+
useCustomWorkingDirectory = "NO"
62+
debugDocumentVersioning = "YES">
63+
<MacroExpansion>
64+
<BuildableReference
65+
BuildableIdentifier = "primary"
66+
BlueprintIdentifier = "BFDB96ED1F3BFF8E001AE303"
67+
BuildableName = "DeepLinkKit.framework"
68+
BlueprintName = "DeepLinkKit"
69+
ReferencedContainer = "container:DeepLinkKit.xcodeproj">
70+
</BuildableReference>
71+
</MacroExpansion>
72+
</ProfileAction>
73+
<AnalyzeAction
74+
buildConfiguration = "Debug">
75+
</AnalyzeAction>
76+
<ArchiveAction
77+
buildConfiguration = "Release"
78+
revealArchiveInOrganizer = "YES">
79+
</ArchiveAction>
80+
</Scheme>

DeepLinkKit/Info.plist

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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>CFBundleDevelopmentRegion</key>
6+
<string>en</string>
7+
<key>CFBundleExecutable</key>
8+
<string>$(EXECUTABLE_NAME)</string>
9+
<key>CFBundleIdentifier</key>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11+
<key>CFBundleInfoDictionaryVersion</key>
12+
<string>6.0</string>
13+
<key>CFBundleName</key>
14+
<string>$(PRODUCT_NAME)</string>
15+
<key>CFBundlePackageType</key>
16+
<string>FMWK</string>
17+
<key>CFBundleShortVersionString</key>
18+
<string>1.0</string>
19+
<key>CFBundleVersion</key>
20+
<string>$(CURRENT_PROJECT_VERSION)</string>
21+
<key>NSPrincipalClass</key>
22+
<string></string>
23+
</dict>
24+
</plist>

0 commit comments

Comments
 (0)