From 05712de01deac6ad4dd6350a84d1c7c207acf7e4 Mon Sep 17 00:00:00 2001 From: hj Date: Mon, 14 Feb 2022 22:53:28 +0800 Subject: [PATCH] Fixed a typo in Linking page. AndroidManifext.xml should be AndroidManifest.xml --- docs/linking.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/linking.md b/docs/linking.md index fd117144aa8..2e13a952de4 100644 --- a/docs/linking.md +++ b/docs/linking.md @@ -319,7 +319,7 @@ The `Promise` will reject on Android if it was impossible to check if the URL ca > > As of iOS 9, your app also needs to provide the `LSApplicationQueriesSchemes` key inside `Info.plist` or `canOpenURL()` will always return `false`. -> When targeting Android 11 (SDK 30) you must specify the intents for the schemes you want to handle in `AndroidManifext.xml`. A list of common intents can be found [here](https://developer.android.com/guide/components/intents-common). +> When targeting Android 11 (SDK 30) you must specify the intents for the schemes you want to handle in `AndroidManifest.xml`. A list of common intents can be found [here](https://developer.android.com/guide/components/intents-common). > > For example to handle `https` schemes the following needs to be added to your manifest: >