Skip to content

Commit 210fbd6

Browse files
Merge 7c23d28 into a05dde3
2 parents a05dde3 + 7c23d28 commit 210fbd6

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ let package = Package(
1717
dependencies: [
1818
// Dependencies declare other packages that this package depends on.
1919
.package(name: "Segment", url: "https://github.com/segmentio/analytics-ios.git" , from: "4.0.0"),
20-
.package(name: "AppsFlyerLib" , url: "https://github.com/AppsFlyerSDK/AppsFlyerFramework.git", .exact("6.12.2")),
20+
.package(name: "AppsFlyerLib" , url: "https://github.com/AppsFlyerSDK/AppsFlyerFramework.git", .exact("6.13.0")),
2121
],
2222
targets: [
2323
// Targets are the basic building blocks of a package. A target can define a module or a test suite.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# AppsFlyer integration for Segment.
44

5-
## This is a Segment wrapper for AppsFlyer SDK that is built with iOS SDK v6.12.2.
5+
## This is a Segment wrapper for AppsFlyer SDK that is built with iOS SDK v6.13.0.
66

77
[![Version](https://img.shields.io/badge/cocoapods-compatible-brightgreen?logo=cocoapods&logoColor=green&style=flat)](http://cocoapods.org/pods/segment-appsflyer-ios)
88
[![Carthage compatible](https://img.shields.io/badge/Carthage-not_compatible-C20000.svg?style=flat)](https://github.com/Carthage/Carthage)
@@ -48,12 +48,12 @@ To install the segment-appsflyer-ios integration:
4848

4949
**Production** version:
5050
```ruby
51-
pod 'segment-appsflyer-ios', '6.12.2'
51+
pod 'segment-appsflyer-ios', '6.13.0'
5252
```
5353

5454
**Strict mode SDK** version:
5555
```ruby
56-
pod 'segment-appsflyer-ios/Strict', '6.12.2'
56+
pod 'segment-appsflyer-ios/Strict', '6.13.0'
5757
```
5858
Use the strict mode SDK to completely remove IDFA collection functionality and AdSupport framework dependencies (for example, when developing apps for kids).
5959

examples/ObjcPodsSample/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ target 'ObjcPodsSample' do
66
use_frameworks!
77

88
# Pods for ObjcPodsSample
9-
pod 'segment-appsflyer-ios','6.12.2'
9+
pod 'segment-appsflyer-ios',:podspec => '../../segment-appsflyer-ios.podspec'
1010
end

examples/SwiftPodsSample/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ target 'SwiftPodsSample' do
66
use_frameworks!
77

88
# Pods for SwiftPodsSample
9-
pod 'segment-appsflyer-ios','6.12.2'
9+
pod 'segment-appsflyer-ios',:podspec => '../../segment-appsflyer-ios.podspec'
1010

1111
end

releasenotes.6.13.0

Whitespace-only changes.

segment-appsflyer-ios.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version_appsflyerLib = '6.12.2'
1+
version_appsflyerLib = '6.13.0'
22
version_plugin = '6.12.2'
33

44
Pod::Spec.new do |s|

segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ - (instancetype)initWithSettings:(NSDictionary *)settings withAnalytics:(SEGAnal
3535

3636
self.appsflyer = [self appsflyerLib];
3737
[self.appsflyer setPluginInfoWith:AFSDKPluginSegment
38-
pluginVersion:@"6.12.2"
38+
pluginVersion:@"6.13.0"
3939
additionalParams:nil];
4040
[self.appsflyer setAppsFlyerDevKey:afDevKey];
4141
[self.appsflyer setAppleAppID:appleAppId];
@@ -93,7 +93,7 @@ - (instancetype)initWithSettings:(NSDictionary *)settings withAppsflyer:(AppsFly
9393
self.appsflyer = aAppsflyer;
9494

9595
[self.appsflyer setPluginInfoWith:AFSDKPluginSegment
96-
pluginVersion:@"6.12.2"
96+
pluginVersion:@"6.13.0"
9797
additionalParams:nil];
9898

9999
NSString *afDevKey = [self.settings objectForKey:@"appsFlyerDevKey"];

0 commit comments

Comments
 (0)