Last active
December 6, 2020 09:37
-
-
Save naishe/f5ae5bedc413e94c764f8b1aedba828b to your computer and use it in GitHub Desktop.
Deep Linking Push Notifications with React Navigation #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Assuming you have a key, “settings”, configured in your | |
# linking config that points to a valid screen | |
# The following command should show you a popup asking | |
# which app you want to use to open this link and offer you | |
# two options (normally) between the browser and your app. | |
npx uri-scheme open https://app.myapp.com/settings --android | |
# The following command should open your app | |
# and lands you on the settings page | |
npx uri-scheme open myapp://settings --android |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment