Skip to content

Commit

Permalink
Merge pull request #50 from AppsFlyerSDK/dev/RD-57421/6.2.0
Browse files Browse the repository at this point in the history
update to 6.2.0
  • Loading branch information
af-margot authored Feb 17, 2021
2 parents 7d4c06c + c3943d6 commit de3f0fa
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 13 deletions.
4 changes: 2 additions & 2 deletions Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -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"
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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).

Expand All @@ -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"
```


Expand Down
3 changes: 3 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Release Notes

### 6.2.0
* Updated iOS SDK to v6.2.0

### 6.1.5
* Fix: remove debug logs

Expand Down
2 changes: 1 addition & 1 deletion examples/SwiftPodsSample/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
10 changes: 5 additions & 5 deletions segment-appsflyer-ios.podspec
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion segment-appsflyer-ios/Classes/SEGAppsFlyerIntegration.m
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit de3f0fa

Please sign in to comment.