From a518f4e124f1f22ea4a01202ba97d9b4e5c3081c Mon Sep 17 00:00:00 2001 From: Andreas Rossbacher Date: Mon, 6 Feb 2023 12:01:45 -0800 Subject: [PATCH] Added clarification about which URI elements are used for matching Added wording to document which URI elements are used for matching the incoming deeplink to code. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 40818c68..d5692368 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,8 @@ public class SampleActivity extends Activity { } ``` +**Note:** Only the scheme, host and path elements of the URI are used for matching the incoming deeplink to the code. Query parameters or any other part of URI are not used for matching. Query parameters are handled and available in the deep link meta data, e.g. for [method call backs](README.md#query-parameters) or when [using handlers](https://github.com/airbnb/DeepLinkDispatch/edit/master/README.md#deeplinkhandler-annotations). + ### Multiple Deep Links Sometimes you'll have an Activity that handles several kinds of deep links: