Handle deeplink Android
See original GitHub issueDescribe the bug Not possible to handle deeplink in Android Wallet to create session without NavigationComponent.
To Reproduce Steps to reproduce the behavior:
- Try to handle deeplink in any wallet app without navigation component and using
deeplink
. Just using a way withandroid:scheme
andandroid:host
- Deeplink not handled
Expected behavior Expected to handle deeplink.
Additional context
The problem may be is because your deeplink scheme doesn’t match expected. (example: app://url
)
Issue Analytics
- State:
- Created 9 months ago
- Comments:14 (2 by maintainers)
Top Results From Across the Web
Create Deep Links to App Content - Android Developers
... add intent filters for the relevant activities in your app manifest. These intent filters allow deep linking to the content in any...
Read more >Deep Linking in Android with Example - GeeksforGeeks
A Deep Link is a URL link that is generated, when anyone clicks on that link our app will be open with a...
Read more >Intro to Deep Linking on Android - Medium
A deep link is an intent filter system that allows users to directly enter a specific activity in an Android app. However there...
Read more >Deep Links in Android: Getting Started - RayWenderlich.com
Understanding Deep Links · Opens the user's preferred app that can handle the link, if it's available. · If the preferred app isn't...
Read more >Deep Linking on Android - Level Up Coding
How to create Deep Link? · Open the user's preferred app that can handle the URI, if one is designated. · Open the...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hey, PR is up. With this change, when you register your wallet’s intent filter with
<data android:scheme="wc" />
the deep link will be received.@stosabon fair point 💯 We want to support as many wallets as possible, even though it’s an example Dapp. I’ll make sure to provide the above fix in the following week to unblock you.
Thanks for pointing this out 🙏