|
7 | 7 | ## Android Reference |
8 | 8 |
|
9 | 9 | 1. External resources |
10 | | - + [Full integration guide](https://dev.branch.io/getting-started/sdk-integration-guide/guide/android/) |
| 10 | + + [Full integration guide](https://docs.branch.io/pages/apps/android/) |
11 | 11 | + [Change log](https://github.com/BranchMetrics/android-branch-deep-linking/blob/master/ChangeLog.md) |
12 | | - + [Testing resources](https://dev.branch.io/getting-started/integration-testing/guide/android/) |
| 12 | + + [Testing resources](https://docs.branch.io/pages/apps/android/#test-your-branch-integration) |
13 | 13 | + [Support portal](http://support.branch.io) |
14 | 14 | + [Test app resources](#get-the-demo-app) |
15 | 15 |
|
@@ -271,7 +271,7 @@ Instant Apps can be rather confusing as there are many different manifests, but |
271 | 271 |
|
272 | 272 | **3. Configure your Branch links as Android App Links** |
273 | 273 |
|
274 | | -This guide presumes that you've already configured Branch for Android App Links in the past. If you haven't configured your full native app to use Branch as Android App Links, [please complete this guide](https://dev.branch.io/getting-started/universal-app-links/guide/android/) which will correctly configure the dashboard and manifest. |
| 274 | +This guide presumes that you've already configured Branch for Android App Links in the past. If you haven't configured your full native app to use Branch as Android App Links, [please complete this guide](https://docs.branch.io/pages/deep-linking/android-app-links/) which will correctly configure the dashboard and manifest. |
275 | 275 |
|
276 | 276 | Now, you simply need to edit the above manifest and paste in the following snippet _inside_ the `application` element. Then you'll need to replace the `xxxx` with your own custom subdomain which will be visible on [the Branch link settings dashboard](https://dashboard.branch.io/link-settings) at the bottom of the page. If you're using a custom subdomain, you can find the advanced instructions in the above link regarding configuring Android App Links. |
277 | 277 |
|
@@ -339,7 +339,7 @@ if (Branch.isInstantApp(this)) { |
339 | 339 |
|
340 | 340 | If your minimum sdk level is 15+, To receive the deep link parameters from the Branch SDK, call initSession and pass in the BranchReferralInitListener. This will return the dictionary of referringParams associated with the link that was just clicked. You can call this anywhere at any time to get the params. |
341 | 341 |
|
342 | | -If you need to support pre 15, Branch must know when the app opens or closes to properly handle the deep link parameters retrieval. You can see more details on how to do this at [this docs site](https://dev.branch.io/getting-started/sdk-integration-guide/advanced/android/#supporting-pre-15-android). Basically, if you don't close the Branch session, you'll see strange behaviors like deep link parameters not showing up after clicking a link the second time. |
| 342 | +If you need to support pre 15, Branch must know when the app opens or closes to properly handle the deep link parameters retrieval. You can see more details on how to do this at [this docs site](https://docs.branch.io/pages/apps/android/). Basically, if you don't close the Branch session, you'll see strange behaviors like deep link parameters not showing up after clicking a link the second time. |
343 | 343 |
|
344 | 344 | #### Initialize Branch lifecycle |
345 | 345 |
|
|
0 commit comments