Skip to content

Commit 73b5168

Browse files
authored
Update README.md
1 parent 4b05f30 commit 73b5168

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ This is NOT a TROPHiT SDK - this repo is an open-source contribution to develope
77
# Usage
88
#### Example: Track Deeplinks with Adjust
99
* 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
1011
* Assuming you already integrated the Adjust SDK, just implement `onDeeplink` in *UnityDeeplinks.cs* as follows:
1112
```
1213
public void onDeeplink(string deeplink) {
@@ -42,7 +43,8 @@ public void onDeeplink(string deeplink) {
4243
```
4344

4445
#### 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:
4648
```
4749
public void onDeeplink(string deeplink) {
4850
Kochava.DeeplinkEvent(deeplink, null);
@@ -51,6 +53,7 @@ public void onDeeplink(string deeplink) {
5153

5254
#### Example: Track Deeplinks with AppsFlyer
5355
* 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
5457
* 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:
5558
```
5659
public void onAppOpenAttribution(string validateResult) {

0 commit comments

Comments
 (0)