Skip to content

Commit ab6dd88

Browse files
committed
update Xcode screenshot for linking
1 parent 1653bdf commit ab6dd88

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

static/assets/deep-linking/xcode-linking.png

100755100644
45 KB
Loading

versioned_docs/version-7.x/deep-linking.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ After adding them, it should look like this:
293293
<category android:name="android.intent.category.BROWSABLE" />
294294
<data android:scheme="http" />
295295
<data android:scheme="https" />
296-
<data android:host="www.example.com" />
296+
<data android:host="app.example.com" />
297297
</intent-filter>
298298
</activity>
299299
```
@@ -385,7 +385,7 @@ To achieve this, you'd need to override how React Navigation subscribes to incom
385385

386386
```js name="Third-party integrations"
387387
const linking = {
388-
prefixes: ['myapp://', 'https://myapp.com'],
388+
prefixes: ['example://', 'https://app.example.com'],
389389

390390
// Custom function to get the URL which was used to open the app
391391
async getInitialURL() {
@@ -434,7 +434,7 @@ const linking = {
434434

435435
```js name="Third-party integrations"
436436
const linking = {
437-
prefixes: ['myapp://', 'https://myapp.com'],
437+
prefixes: ['example://', 'https://app.example.com'],
438438

439439
// Custom function to get the URL which was used to open the app
440440
async getInitialURL() {

0 commit comments

Comments
 (0)