Skip to content

Commit 56358c3

Browse files
authored
Merge pull request #23 from BranchMetrics/SDK-2206-patch-for-SPM-tuist
SDK-2206 patch for spm tuist
2 parents 1c63a76 + a7b9ae3 commit 56358c3

File tree

154 files changed

+88
-149
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

154 files changed

+88
-149
lines changed

BranchSDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "BranchSDK"
3-
s.version = "3.0.1"
3+
s.version = "3.1.0"
44
s.summary = "Create an HTTP URL for any piece of content in your app"
55
s.description = <<-DESC
66
- Want the highest possible conversions on your sharing feature?

BranchSDK.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1953,7 +1953,7 @@
19531953
"@executable_path/Frameworks",
19541954
"@loader_path/Frameworks",
19551955
);
1956-
MARKETING_VERSION = 3.0.1;
1956+
MARKETING_VERSION = 3.1.0;
19571957
PRODUCT_BUNDLE_IDENTIFIER = io.branch.BranchSDK;
19581958
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
19591959
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -1984,7 +1984,7 @@
19841984
"@executable_path/Frameworks",
19851985
"@loader_path/Frameworks",
19861986
);
1987-
MARKETING_VERSION = 3.0.1;
1987+
MARKETING_VERSION = 3.1.0;
19881988
PRODUCT_BUNDLE_IDENTIFIER = io.branch.BranchSDK;
19891989
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
19901990
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -2186,7 +2186,7 @@
21862186
"@loader_path/Frameworks",
21872187
);
21882188
MACH_O_TYPE = staticlib;
2189-
MARKETING_VERSION = 3.0.1;
2189+
MARKETING_VERSION = 3.1.0;
21902190
PRODUCT_BUNDLE_IDENTIFIER = io.branch.BranchSDK;
21912191
PRODUCT_MODULE_NAME = BranchSDK;
21922192
PRODUCT_NAME = BranchSDK;
@@ -2221,7 +2221,7 @@
22212221
"@loader_path/Frameworks",
22222222
);
22232223
MACH_O_TYPE = staticlib;
2224-
MARKETING_VERSION = 3.0.1;
2224+
MARKETING_VERSION = 3.1.0;
22252225
PRODUCT_BUNDLE_IDENTIFIER = io.branch.BranchSDK;
22262226
PRODUCT_MODULE_NAME = BranchSDK;
22272227
PRODUCT_NAME = BranchSDK;
@@ -2254,7 +2254,7 @@
22542254
"@executable_path/Frameworks",
22552255
"@loader_path/Frameworks",
22562256
);
2257-
MARKETING_VERSION = 3.0.1;
2257+
MARKETING_VERSION = 3.1.0;
22582258
PRODUCT_BUNDLE_IDENTIFIER = io.branch.BranchSDK;
22592259
PRODUCT_NAME = BranchSDK;
22602260
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -2285,7 +2285,7 @@
22852285
"@executable_path/Frameworks",
22862286
"@loader_path/Frameworks",
22872287
);
2288-
MARKETING_VERSION = 3.0.1;
2288+
MARKETING_VERSION = 3.1.0;
22892289
PRODUCT_BUNDLE_IDENTIFIER = io.branch.BranchSDK;
22902290
PRODUCT_NAME = BranchSDK;
22912291
PROVISIONING_PROFILE_SPECIFIER = "";

ChangeLog.md

Lines changed: 5 additions & 0 deletions

Framework/BranchSDK.h

Lines changed: 0 additions & 63 deletions
This file was deleted.

Framework/PrivacyInfo.xcprivacy

Lines changed: 0 additions & 72 deletions
This file was deleted.

Package.swift

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,17 @@ let package = Package(
1818
targets: [
1919
.target(
2020
name: "BranchSDK",
21-
path: "BranchSDK",
21+
path: "Sources",
22+
sources: [
23+
"BranchSDK/"
24+
],
2225
resources: [
23-
.copy("PrivacyInfo.xcprivacy"),
26+
.copy("Resources/PrivacyInfo.xcprivacy"),
27+
],
28+
publicHeadersPath: "BranchSDK/Public/",
29+
cSettings: [
30+
.headerSearchPath("BranchSDK/Private"),
2431
],
25-
publicHeadersPath: "",
2632
linkerSettings: [
2733
.linkedFramework("CoreServices"),
2834
.linkedFramework("SystemConfiguration"),

0 commit comments

Comments
 (0)