Skip to content

Commit

Permalink
Merge pull request #53 from AppsFlyerSDK/dev/RD-59131/6.2.4
Browse files Browse the repository at this point in the history
Dev/rd 59131/6.2.4
  • Loading branch information
af-margot committed Mar 16, 2021
2 parents 2bb27ff + 5a0f118 commit fdc23d6
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 12 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,5 @@ Carthage
# `pod install` in .travis.yml
#
# Pods/

carthage.sh
2 changes: 1 addition & 1 deletion 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.2.3"
binary "https://raw.githubusercontent.com/AppsFlyerSDK/AppsFlyerFramework/master/Carthage/appsflyer-ios.json" "6.2.4"
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.2.3.
## This is a Segment wrapper for AppsFlyer SDK that is built with iOS SDK v6.2.4.

[![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.2.3'
pod 'segment-appsflyer-ios', '6.2.4'
```

**Strict mode SDK** version:
```ruby
pod 'segment-appsflyer-ios/Strict', '6.2.3'
pod 'segment-appsflyer-ios/Strict', '6.2.4'
```
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.2.3"
github "AppsFlyerSDK/segment-appsflyer-ios" "6.2.4"
```


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.4
* Updated iOS SDK to v6.2.4

### 6.2.3
* Updated iOS SDK to v6.2.3

Expand Down
2 changes: 1 addition & 1 deletion examples/ObjcPodsSample/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ target 'ObjcPodsSample' do
use_frameworks!

# Pods for ObjcPodsSample
pod 'segment-appsflyer-ios', '~> 6.2.3'
pod 'segment-appsflyer-ios', '~> 6.2.4'
end
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.2.3'
pod 'segment-appsflyer-ios', '~> 6.2.4'

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.2.3"
s.version = "6.2.4"
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.2.3'
ss.tvos.dependency 'AppsFlyerFramework', '~> 6.2.3'
ss.ios.dependency 'AppsFlyerFramework', '~> 6.2.4'
ss.tvos.dependency 'AppsFlyerFramework', '~> 6.2.4'
end

s.subspec 'Strict' do |ss|
ss.ios.dependency 'AppsFlyerFramework/Strict', '~> 6.2.3'
ss.ios.dependency 'AppsFlyerFramework/Strict', '~> 6.2.4'
end

s.subspec 'MacCatalyst' do |ss|
ss.ios.dependency 'AppsFlyerFramework/MacCatalyst', '~> 6.2.3'
ss.ios.dependency 'AppsFlyerFramework/MacCatalyst', '~> 6.2.4'
end
end

0 comments on commit fdc23d6

Please sign in to comment.