Skip to content

Commit 8a06508

Browse files
Update Branch SDK to 1.45.2 and mParticle SDK to 8.9 (#46)
* SDK-1241 update mParticle to iOS SDK 1.45.0. Also increase min version to iOS 11 to keep in line with Xcode 14. * SDK-1241 update to 1.45.1 * Added PR Template * Update to iOS 1.45.2 --------- Co-authored-by: nsingh-branch <[email protected]>
1 parent d9ef679 commit 8a06508

File tree

11 files changed

+49
-13
lines changed

11 files changed

+49
-13
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
## Reference
2+
SDK-XXXX -- <TITLE>.
3+
4+
## Summary
5+
<!-- Simple summary of what was changed. -->
6+
7+
## Motivation
8+
<!-- Why are you making this change? If it's for fixing a bug, if possible, please include a code snippet or example project that demonstrates the issue. -->
9+
10+
## Type Of Change
11+
<!-- Please delete options that are not relevant -->
12+
- [ ] Bug fix (non-breaking change which fixes an issue)
13+
- [ ] New feature (non-breaking change which adds functionality)
14+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
15+
- [ ] This change requires a documentation update
16+
17+
## Testing Instructions
18+
<!-- Testing instructions, example code snippets, etc -->
19+
20+
21+
<!-- Checklist -->
22+
<!-- My code follows the style guidelines of this project -->
23+
<!-- I have performed a self-review of my code -->
24+
<!-- I have commented my code, particularly in hard-to-understand areas -->
25+
<!-- I have made corresponding changes to the documentation -->
26+
<!-- I have added tests that prove my fix is effective or that my feature works -->
27+
<!-- New and existing unit tests pass locally with my changes -->
28+
29+
cc @BranchMetrics/saas-sdk-devs for visibility.

Cartfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github "BranchMetrics/ios-branch-deep-linking" ~> 1.43
2-
github "mparticle/mparticle-apple-sdk" ~> 8.8
1+
github "BranchMetrics/ios-branch-deep-linking" ~> 1.45
2+
github "mparticle/mparticle-apple-sdk" ~> 8.9

Examples/Carthage/Branch Example.xcodeproj/project.pbxproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@
147147
developmentRegion = English;
148148
hasScannedForEncodings = 0;
149149
knownRegions = (
150+
English,
150151
en,
151152
Base,
152153
);
@@ -322,6 +323,7 @@
322323
"$(PROJECT_DIR)/Carthage/Build/iOS",
323324
);
324325
INFOPLIST_FILE = "Branch Example/Info.plist";
326+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
325327
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
326328
PRODUCT_BUNDLE_IDENTIFIER = com.mparticle.branchtesterapp;
327329
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -338,6 +340,7 @@
338340
"$(PROJECT_DIR)/Carthage/Build/iOS",
339341
);
340342
INFOPLIST_FILE = "Branch Example/Info.plist";
343+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
341344
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
342345
PRODUCT_BUNDLE_IDENTIFIER = com.mparticle.branchtesterapp;
343346
PRODUCT_NAME = "$(TARGET_NAME)";

Examples/Carthage/Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "mparticle-integrations/mparticle-apple-integration-branchmetrics" ~> 7.0
1+
github "mparticle-integrations/mparticle-apple-integration-branchmetrics" ~> 8.1

Examples/Cocoapods/Branch Example.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,7 @@
369369
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
370370
CODE_SIGN_ENTITLEMENTS = "Branch Example/Branch Example.entitlements";
371371
INFOPLIST_FILE = "Branch Example/Info.plist";
372+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
372373
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
373374
PRODUCT_BUNDLE_IDENTIFIER = com.mparticle.branchtesterapp;
374375
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -382,6 +383,7 @@
382383
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
383384
CODE_SIGN_ENTITLEMENTS = "Branch Example/Branch Example.entitlements";
384385
INFOPLIST_FILE = "Branch Example/Info.plist";
386+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
385387
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
386388
PRODUCT_BUNDLE_IDENTIFIER = com.mparticle.branchtesterapp;
387389
PRODUCT_NAME = "$(TARGET_NAME)";

Examples/Cocoapods/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Uncomment this line to define a global platform for your project
2-
# platform :ios, '9.0'
2+
platform :ios, '11.0'
33

44
target 'Branch Example' do
55
use_frameworks!

Examples/mParticle-Branch-Example/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
platform :ios, '9.0'
1+
platform :ios, '11.0'
22
use_frameworks!
33

44
target 'mParticle' do

Examples/mParticle-Branch-Example/mParticle.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -430,6 +430,7 @@
430430
CODE_SIGN_STYLE = Automatic;
431431
DEVELOPMENT_TEAM = R63EM248DP;
432432
INFOPLIST_FILE = mParticle/Info.plist;
433+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
433434
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
434435
PRODUCT_BUNDLE_IDENTIFIER = io.branch.mParticleFortune;
435436
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -447,6 +448,7 @@
447448
CODE_SIGN_STYLE = Automatic;
448449
DEVELOPMENT_TEAM = R63EM248DP;
449450
INFOPLIST_FILE = mParticle/Info.plist;
451+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
450452
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
451453
PRODUCT_BUNDLE_IDENTIFIER = io.branch.mParticleFortune;
452454
PRODUCT_NAME = "$(TARGET_NAME)";

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import PackageDescription
44

55
let package = Package(
66
name: "mParticle-BranchMetrics",
7-
platforms: [ .iOS(.v9) ],
7+
platforms: [ .iOS(.v11) ],
88
products: [
99
.library(
1010
name: "mParticle-BranchMetrics",
@@ -13,10 +13,10 @@ let package = Package(
1313
dependencies: [
1414
.package(name: "mParticle-Apple-SDK",
1515
url: "https://github.com/mParticle/mparticle-apple-sdk",
16-
.upToNextMajor(from: "8.2.0")),
16+
.upToNextMajor(from: "8.9.0")),
1717
.package(name: "Branch",
1818
url: "https://github.com/BranchMetrics/ios-branch-sdk-spm",
19-
.upToNextMajor(from: "1.39.4")),
19+
.upToNextMajor(from: "1.45.2")),
2020
],
2121
targets: [
2222
.target(

mParticle-BranchMetrics.podspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "mParticle-BranchMetrics"
3-
s.version = "8.0.6"
3+
s.version = "8.1.0"
44
s.summary = "BranchMetrics integration for mParticle"
55

66
s.description = <<-DESC
@@ -13,8 +13,8 @@ Pod::Spec.new do |s|
1313
s.source = { :git => "https://github.com/mparticle-integrations/mparticle-apple-integration-branchmetrics.git", :tag => s.version.to_s }
1414
s.social_media_url = "https://twitter.com/mparticle"
1515

16-
s.ios.deployment_target = "9.0"
16+
s.ios.deployment_target = "11.0"
1717
s.ios.source_files = 'mParticle-BranchMetrics/*.{h,m,mm}'
18-
s.ios.dependency 'mParticle-Apple-SDK/mParticle', '~> 8.8'
19-
s.ios.dependency 'Branch', '~> 1.43'
18+
s.ios.dependency 'mParticle-Apple-SDK/mParticle', '~> 8.9'
19+
s.ios.dependency 'Branch', '~> 1.45'
2020
end

0 commit comments

Comments
 (0)