Skip to content

Commit 97dbe85

Browse files
committed
Release 0.7.3
1 parent fdaf777 commit 97dbe85

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

ApphudSDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'ApphudSDK'
3-
s.version = '0.7.2'
3+
s.version = '0.7.3'
44
s.summary = 'Track and control iOS auto-renewable subscriptions.'
55

66
s.description = 'Track, control and analyze iOS auto-renewable subscriptions with Apphud.'

Source/Apphud.swift

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,13 @@ final public class Apphud: NSObject {
259259

260260
//MARK:- Attribution
261261

262+
/**
263+
Submit attribution data to Apphud from your attribution network provider.
264+
- parameter data: Required. Attribution dictionary.
265+
- parameter provider: Required. Attribution provider name. Available values: .appsFlyer. Will be added more soon.
266+
- parameter identifier: Optional. Identifier that matches Apphud and Attrubution provider. Required for AppsFlyer.
267+
- parameter callback: Optional. Returns true if successfully sent.
268+
*/
262269
@objc public static func addAttribution(data: [AnyHashable : Any], from provider: ApphudAttributionProvider, identifer: String? = nil, callback: ApphudBoolCallback?){
263270
ApphudInternal.shared.addAttribution(data: data, from: provider, identifer: identifer, callback: callback)
264271
}

Source/ApphudInternal.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import Foundation
1010
import AdSupport
1111
import StoreKit
1212

13-
let sdk_version = "0.7.2"
13+
let sdk_version = "0.7.3"
1414

1515
final class ApphudInternal {
1616

0 commit comments

Comments
 (0)