-
-
Notifications
You must be signed in to change notification settings - Fork 668
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deeplink [nfc]: Add documentation to manually test deep link.
- In this commit, instructions are only provided for android.
- Loading branch information
1 parent
9049529
commit d787626
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -169,3 +169,18 @@ find something in its docs, it's worth | |
[flow-typed]: https://github.com/flowtype/flow-typed | ||
[flow-issues]: https://github.com/facebook/flow/issues?q=is%3Aissue | ||
[flow-cheat-sheet]: https://www.saltycrane.com/flow-type-cheat-sheet/latest/ | ||
|
||
## Manual Testing | ||
|
||
### Deep Link | ||
|
||
Testing deep link url is much more productive when one uses cli instead of going to the browser and typing the link. | ||
|
||
#### Android | ||
|
||
To send a deeplink event to android (debug build) use the following: | ||
```bash | ||
adb shell am start -W -a android.intent.action.VIEW -d "zulip://test.realm.com/[email protected]#narrow/valid-narrow" com.zulipmobile.debug | ||
``` | ||
|
||
Make sure to change the domain name, email parameter and narrow as required. |