Last active
March 7, 2018 18:18
-
-
Save banasiak/808037e990fc347d1fb881f467f85c1a to your computer and use it in GitHub Desktop.
Script to send a deep link to an Android app.
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
#!/bin/bash | |
adb shell am start -W \ | |
-a android.intent.action.VIEW \ | |
-d \'$1\' \ | |
com.target.ui.debug \& |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment