diff --git a/Cartfile.resolved b/Cartfile.resolved index 65cc958..383a11f 100644 --- a/Cartfile.resolved +++ b/Cartfile.resolved @@ -1,2 +1,2 @@ -binary "https://raw.githubusercontent.com/AppsFlyerSDK/AppsFlyerFramework/master/Carthage/appsflyer-ios.json" "6.1.4" -github "segmentio/analytics-ios" "4.1.2" +binary "https://raw.githubusercontent.com/AppsFlyerSDK/AppsFlyerFramework/master/Carthage/appsflyer-ios.json" "6.2.1" +github "segmentio/analytics-ios" "4.1.3" diff --git a/README.md b/README.md index 253c2f8..cfbea89 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.1.4. +## This is a Segment wrapper for AppsFlyer SDK that is built with iOS SDK v6.2.0. [![Version](https://img.shields.io/cocoapods/v/segment-appsflyer-ios.svg?style=flat)](http://cocoapods.org/pods/segment-appsflyer-ios) [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) @@ -42,12 +42,12 @@ To install the segment-appsflyer-ios integration: **Production** version: ```ruby -pod 'segment-appsflyer-ios', '6.1.5' +pod 'segment-appsflyer-ios', '6.2.0' ``` **Strict mode SDK** version: ```ruby -pod 'segment-appsflyer-ios/Strict', '6.1.5' +pod 'segment-appsflyer-ios/Strict', '6.2.0' ``` Use the strict mode SDK to completely remove IDFA collection functionality and AdSupport framework dependencies (for example, when developing apps for kids). @@ -59,7 +59,7 @@ Use the strict mode SDK to completely remove IDFA collection functionality and A **Production** version: ```ogdl -github "AppsFlyerSDK/segment-appsflyer-ios" "6.1.5" +github "AppsFlyerSDK/segment-appsflyer-ios" "6.2.0" ``` diff --git a/RELEASENOTES.md b/RELEASENOTES.md index c4be80c..b2a786f 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,5 +1,8 @@ # Release Notes +### 6.2.0 +* Updated iOS SDK to v6.2.0 + ### 6.1.5 * Fix: remove debug logs diff --git a/examples/SwiftPodsSample/Podfile b/examples/SwiftPodsSample/Podfile index 3c154e8..56661d7 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.1.4' + pod 'segment-appsflyer-ios', '~> 6.2.0' end diff --git a/segment-appsflyer-ios.podspec b/segment-appsflyer-ios.podspec index f3c6695..a08169d 100644 --- a/segment-appsflyer-ios.podspec +++ b/segment-appsflyer-ios.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "segment-appsflyer-ios" - s.version = "6.1.5" + s.version = "6.2.0" s.summary = "AppsFlyer Integration for Segment's analytics-ios library." s.description = <<-DESC @@ -23,15 +23,15 @@ Pod::Spec.new do |s| s.default_subspecs = 'Main' s.subspec 'Main' do |ss| - ss.ios.dependency 'AppsFlyerFramework', '~> 6.1.4' - ss.tvos.dependency 'AppsFlyerFramework', '~> 6.1.4' + ss.ios.dependency 'AppsFlyerFramework', '~> 6.2.0' + ss.tvos.dependency 'AppsFlyerFramework', '~> 6.2.0' end s.subspec 'Strict' do |ss| - ss.ios.dependency 'AppsFlyerFramework/Strict', '~> 6.1.4' + ss.ios.dependency 'AppsFlyerFramework/Strict', '~> 6.2.0' end s.subspec 'MacCatalyst' do |ss| - ss.ios.dependency 'AppsFlyerFramework/MacCatalyst', '~> 6.1.4' + ss.ios.dependency 'AppsFlyerFramework/MacCatalyst', '~> 6.2.0' end end diff --git a/segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.m b/segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.m index a424644..703129c 100644 --- a/segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.m +++ b/segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.m @@ -72,7 +72,7 @@ - (instancetype)initWithSettings:(NSDictionary *)settings withAppsflyer:(AppsFly NSString *appleAppId = [self.settings objectForKey:@"appleAppID"]; [self.appsflyer setAppsFlyerDevKey:afDevKey]; [self.appsflyer setAppleAppID:appleAppId]; - self.appsflyer.isDebug = true; + // self.appsflyer.isDebug = true; if ([self logAttributionData]) { self.appsflyer.delegate = self;