Skip to content

Commit 6b3a60f

Browse files
author
Chris Marshall
authored
Merge pull request #107 from adjust/dead-links-fixed
Dead links fixed
2 parents ad883da + 818a48e commit 6b3a60f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ You can increase or decrease the amount of logs you see by changing the value of
109109
- `Verbose` - enable all logging
110110
- `Debug` - enable more logging
111111
- `Info` - the default
112-
- `Warn` - disable F logging
112+
- `Warn` - disable info logging
113113
- `Error` - disable warnings as well
114114
- `Assert` - disable errors as well
115115
- `Suppress` - disable all logging
@@ -578,7 +578,7 @@ As described in the [attribution callback section](#attribution-callback), this
578578
AdjustAttribution attribution = Adjust.getAttribution();
579579
```
580580

581-
**Note**: Information about current attribution is available after app installation has been tracked by the Adjust backend and the attribution callback has been initially triggered. From that moment on, the Adjust SDK has information about a user's attribution and you can access it with this method. So, **it is not possible** to access a user's attribution value before the SDK has been initialised and an attribution callback has been triggered.
581+
**Note**: Information about current attribution is available after app installation has been tracked by the Adjust backend and the attribution callback has been initially triggered. From that moment on, the Adjust SDK has information about a user's attribution and you can access it with this method. So, **it is not possible** to access a user's attribution value before the SDK has been initialized and an attribution callback has been triggered.
582582

583583
### <a id="push-token">Push token
584584

@@ -621,11 +621,11 @@ You need to set up deep linking handling in your app **on native level** - in yo
621621
622622
#### <a id="deeplinking-standard">Standard deep linking scenario
623623
624-
Unfortunatelly, in this scenario the information about the deep link can not be delivered to you in your Unity C# code. Once you enable your app to handle deep linking, you will get information about the deep link on native level. For more information check our chapters below on how to enable deep linking for Android and iOS apps.
624+
Unfortunately, in this scenario the information about the deep link can not be delivered to you in your Unity C# code. Once you enable your app to handle deep linking, you will get information about the deep link on native level. For more information check our chapters below on how to enable deep linking for Android and iOS apps.
625625
626626
#### <a id="deeplinking-deferred">Deferred deep linking scenario
627627
628-
In order to get F about the URL content in a deferred deep linking scenario, you should set a callback method on the `AdjustConfig` object which will receive one `string` parameter where the content of the URL will be delivered. You should set this method on the config object by calling the method `setDeferredDeeplinkDelegate`:
628+
In order to get information about the URL content in a deferred deep linking scenario, you should set a callback method on the `AdjustConfig` object which will receive one `string` parameter where the content of the URL will be delivered. You should set this method on the config object by calling the method `setDeferredDeeplinkDelegate`:
629629
630630
```cs
631631
// ...
@@ -643,7 +643,7 @@ adjustConfig.setDeferredDeeplinkDelegate(DeferredDeeplinkCallback);
643643
Adjust.start(adjustConfig);
644644
```
645645

646-
<a id="deeplinking-deferred-open">In deferred deep linking scenario, there is one additional setting which can be set on the `AdjustConfig` object. Once the Adjust SDK gets the deferred deep link F , we are offering you the possibility to choose whether our SDK should open this URL or not. You can choose to set this option by calling the `setLaunchDeferredDeeplink` method on the config object:
646+
<a id="deeplinking-deferred-open">In deferred deep linking scenario, there is one additional setting which can be set on the `AdjustConfig` object. Once the Adjust SDK gets the deferred deep link information, we offer you the possibility to choose whether our SDK should open this URL or not. You can choose to set this option by calling the `setLaunchDeferredDeeplink` method on the config object:
647647

648648
```cs
649649
// ...
@@ -698,14 +698,14 @@ The post build scripts require execute permissions to be able to run. If the bui
698698
[android]: https://github.com/adjust/android_sdk
699699
[releases]: https://github.com/adjust/adjust_unity_sdk/releases
700700
[google_ad_id]: https://developer.android.com/google/play-services/id.html
701-
[ios-deeplinking]: https://github.com/adjust/ios_sdk/#deeplink-reattributions
701+
[ios-deeplinking]: https://github.com/adjust/ios_sdk/#deeplinking-reattribution
702702
[attribution_data]: https://github.com/adjust/sdks/blob/master/doc/attribution-data.md
703703
[special-partners]: https://docs.adjust.com/en/special-partners
704704
[unity-purchase-sdk]: https://github.com/adjust/unity_purchase_sdk
705705
[android-deeplinking]: https://github.com/adjust/android_sdk#deep-linking
706706
[google_play_services]: http://developer.android.com/google/play-services/setup.html
707707
[android_sdk_download]: https://developer.android.com/sdk/index.html#Other
708-
[android-custom-receiver]: https://github.com/adjust/android_sdk/blob/master/doc/referrer.md
708+
[android-custom-receiver]: https://github.com/adjust/android_sdk/blob/master/doc/english/referrer.md
709709

710710
[menu_android]: https://raw.github.com/adjust/adjust_sdk/master/Resources/unity/v4/menu_android.png
711711
[adjust_editor]: https://raw.github.com/adjust/adjust_sdk/master/Resources/unity/v4/adjust_editor.png

0 commit comments

Comments
 (0)