From 03dc82fe81088d4f5a1ff84818fe77e6c0280cc3 Mon Sep 17 00:00:00 2001 From: Moris Gateno Date: Wed, 1 May 2024 12:55:52 +0300 Subject: [PATCH 1/3] bump the podspec min deployment target --- segment-appsflyer-ios.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/segment-appsflyer-ios.podspec b/segment-appsflyer-ios.podspec index 7751479..0e7366e 100644 --- a/segment-appsflyer-ios.podspec +++ b/segment-appsflyer-ios.podspec @@ -16,8 +16,8 @@ Pod::Spec.new do |s| s.source = { :git => "https://github.com/AppsFlyerSDK/segment-appsflyer-ios.git", :tag => s.version.to_s } - s.ios.deployment_target = '9.0' - s.tvos.deployment_target = '9.0' + s.ios.deployment_target = '12.0' + s.tvos.deployment_target = '12.0' s.requires_arc = true s.static_framework = true From 49ac5f9a2ceb8a8097d8c6063bde8793a7b293e7 Mon Sep 17 00:00:00 2001 From: Moris Gateno Date: Wed, 1 May 2024 10:00:51 +0000 Subject: [PATCH 2/3] Commited from github action - prepaing the repo for QA locally. --- Package.swift | 2 +- README.md | 6 +++--- examples/ObjcPodsSample/Podfile | 2 +- examples/SwiftPodsSample/Podfile | 2 +- releasenotes.6.14.3 | 0 segment-appsflyer-ios.podspec | 2 +- segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.m | 4 ++-- 7 files changed, 9 insertions(+), 9 deletions(-) create mode 100644 releasenotes.6.14.3 diff --git a/Package.swift b/Package.swift index 32ba14d..93605ce 100644 --- a/Package.swift +++ b/Package.swift @@ -17,7 +17,7 @@ let package = Package( dependencies: [ // Dependencies declare other packages that this package depends on. .package(name: "Segment", url: "https://github.com/segmentio/analytics-ios.git" , from: "4.0.0"), - .package(name: "AppsFlyerLib" , url: "https://github.com/AppsFlyerSDK/AppsFlyerFramework.git", .exact("6.13.1")), + .package(name: "AppsFlyerLib" , url: "https://github.com/AppsFlyerSDK/AppsFlyerFramework.git", .exact("6.14.3")), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/README.md b/README.md index 8cae40b..21b637e 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ # AppsFlyer integration for Segment. -## This is a Segment wrapper for AppsFlyer SDK that is built with iOS SDK v6.13.1. +## This is a Segment wrapper for AppsFlyer SDK that is built with iOS SDK v6.14.3. [![Version](https://img.shields.io/badge/cocoapods-compatible-brightgreen?logo=cocoapods&logoColor=green&style=flat)](http://cocoapods.org/pods/segment-appsflyer-ios) [![Carthage compatible](https://img.shields.io/badge/Carthage-not_compatible-C20000.svg?style=flat)](https://github.com/Carthage/Carthage) @@ -49,12 +49,12 @@ To install the segment-appsflyer-ios integration: **Production** version: ```ruby -pod 'segment-appsflyer-ios', '6.13.1' +pod 'segment-appsflyer-ios', '6.14.3' ``` **Strict mode SDK** version: ```ruby -pod 'segment-appsflyer-ios/Strict', '6.13.1' +pod 'segment-appsflyer-ios/Strict', '6.14.3' ``` Use the strict mode SDK to completely remove IDFA collection functionality and AdSupport framework dependencies (for example, when developing apps for kids). diff --git a/examples/ObjcPodsSample/Podfile b/examples/ObjcPodsSample/Podfile index da27729..f8e23c8 100644 --- a/examples/ObjcPodsSample/Podfile +++ b/examples/ObjcPodsSample/Podfile @@ -6,5 +6,5 @@ target 'ObjcPodsSample' do use_frameworks! # Pods for ObjcPodsSample - pod 'segment-appsflyer-ios','6.13.1' + pod 'segment-appsflyer-ios',:podspec => '../../segment-appsflyer-ios.podspec' end diff --git a/examples/SwiftPodsSample/Podfile b/examples/SwiftPodsSample/Podfile index 6eb7ee5..02ac177 100644 --- a/examples/SwiftPodsSample/Podfile +++ b/examples/SwiftPodsSample/Podfile @@ -6,6 +6,6 @@ target 'SwiftPodsSample' do use_frameworks! # Pods for SwiftPodsSample - pod 'segment-appsflyer-ios','6.13.1' + pod 'segment-appsflyer-ios',:podspec => '../../segment-appsflyer-ios.podspec' end diff --git a/releasenotes.6.14.3 b/releasenotes.6.14.3 new file mode 100644 index 0000000..e69de29 diff --git a/segment-appsflyer-ios.podspec b/segment-appsflyer-ios.podspec index 0e7366e..5022885 100644 --- a/segment-appsflyer-ios.podspec +++ b/segment-appsflyer-ios.podspec @@ -1,4 +1,4 @@ -version_appsflyerLib = '6.13.1' +version_appsflyerLib = '6.14.3' version_plugin = '6.13.1' Pod::Spec.new do |s| diff --git a/segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.m b/segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.m index 9913e78..304af66 100644 --- a/segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.m +++ b/segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.m @@ -35,7 +35,7 @@ - (instancetype)initWithSettings:(NSDictionary *)settings withAnalytics:(SEGAnal self.appsflyer = [self appsflyerLib]; [self.appsflyer setPluginInfoWith:AFSDKPluginSegment - pluginVersion:@"6.13.1" + pluginVersion:@"6.14.3" additionalParams:nil]; [self.appsflyer setAppsFlyerDevKey:afDevKey]; [self.appsflyer setAppleAppID:appleAppId]; @@ -93,7 +93,7 @@ - (instancetype)initWithSettings:(NSDictionary *)settings withAppsflyer:(AppsFly self.appsflyer = aAppsflyer; [self.appsflyer setPluginInfoWith:AFSDKPluginSegment - pluginVersion:@"6.13.1" + pluginVersion:@"6.14.3" additionalParams:nil]; NSString *afDevKey = [self.settings objectForKey:@"appsFlyerDevKey"]; From 4a9db00dca659fd4ef638f29dcafeee985ee4ad8 Mon Sep 17 00:00:00 2001 From: Anka Date: Wed, 1 May 2024 10:16:02 +0000 Subject: [PATCH 3/3] Commited from github action - prepaing the repo for production. --- RELEASENOTES.md | 3 +++ examples/ObjcPodsSample/Podfile | 2 +- examples/SwiftPodsSample/Podfile | 2 +- releasenotes.6.14.3 | 0 segment-appsflyer-ios.podspec | 2 +- 5 files changed, 6 insertions(+), 3 deletions(-) delete mode 100644 releasenotes.6.14.3 diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 5db6b4b..e5e441c 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,3 +1,6 @@ +### 6.14.3 + + ### 6.13.1 * Update to Appsflyer SDK 6.13.1. diff --git a/examples/ObjcPodsSample/Podfile b/examples/ObjcPodsSample/Podfile index f8e23c8..81db05e 100644 --- a/examples/ObjcPodsSample/Podfile +++ b/examples/ObjcPodsSample/Podfile @@ -6,5 +6,5 @@ target 'ObjcPodsSample' do use_frameworks! # Pods for ObjcPodsSample - pod 'segment-appsflyer-ios',:podspec => '../../segment-appsflyer-ios.podspec' + pod 'segment-appsflyer-ios','6.14.3' end diff --git a/examples/SwiftPodsSample/Podfile b/examples/SwiftPodsSample/Podfile index 02ac177..6608823 100644 --- a/examples/SwiftPodsSample/Podfile +++ b/examples/SwiftPodsSample/Podfile @@ -6,6 +6,6 @@ target 'SwiftPodsSample' do use_frameworks! # Pods for SwiftPodsSample - pod 'segment-appsflyer-ios',:podspec => '../../segment-appsflyer-ios.podspec' + pod 'segment-appsflyer-ios','6.14.3' end diff --git a/releasenotes.6.14.3 b/releasenotes.6.14.3 deleted file mode 100644 index e69de29..0000000 diff --git a/segment-appsflyer-ios.podspec b/segment-appsflyer-ios.podspec index 5022885..82e228a 100644 --- a/segment-appsflyer-ios.podspec +++ b/segment-appsflyer-ios.podspec @@ -1,5 +1,5 @@ version_appsflyerLib = '6.14.3' -version_plugin = '6.13.1' +version_plugin = '6.14.3' Pod::Spec.new do |s| s.name = "segment-appsflyer-ios"