You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-1
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ This is NOT a TROPHiT SDK - this repo is an open-source contribution to develope
7
7
# Usage
8
8
#### Example: Track Deeplinks with Adjust
9
9
* Tested with [Adjust Unity SDK](https://github.com/adjust/unity_sdk) v4.10.0
10
+
* Also enables Adjust's SDK to handle iOS Universal Links
10
11
* Assuming you already integrated the Adjust SDK, just implement `onDeeplink` in *UnityDeeplinks.cs* as follows:
11
12
```
12
13
public void onDeeplink(string deeplink) {
@@ -42,7 +43,8 @@ public void onDeeplink(string deeplink) {
42
43
```
43
44
44
45
#### Example: Track Deeplinks with Kochava
45
-
Assuming you already integrated the [Kochava Unity SDK](http://support.kochava.com/sdk-integration/unity-sdk-integration), just implement `onDeeplink` in *UnityDeeplinks.cs* as follows:
46
+
* Also enables Kochava's SDK to handle iOS Universal Links
47
+
* Assuming you already integrated the [Kochava Unity SDK](http://support.kochava.com/sdk-integration/unity-sdk-integration), just implement `onDeeplink` in *UnityDeeplinks.cs* as follows:
46
48
```
47
49
public void onDeeplink(string deeplink) {
48
50
Kochava.DeeplinkEvent(deeplink, null);
@@ -51,6 +53,7 @@ public void onDeeplink(string deeplink) {
51
53
52
54
#### Example: Track Deeplinks with AppsFlyer
53
55
* Tested with [AppsFlyer Unity SDK](https://support.appsflyer.com/hc/en-us/articles/213766183-Unity) v4.10.1
56
+
* Also enables AppsFlyer's SDK to handle iOS Universal Links
54
57
* Assuming you already integrated the [AppsFlyer Unity SDK](https://support.appsflyer.com/hc/en-us/articles/213766183-Unity), just implement `onAppOpenAttribution` in *AppsFlyerTrackerCallbacks.cs* as follows:
55
58
```
56
59
public void onAppOpenAttribution(string validateResult) {
0 commit comments