Files
AndroidJetpack/Jetmagic/scripts/Launch deep link with adb.txt
coco 723ce1af5c a
2026-07-03 15:12:48 +08:00

8 lines
659 B
Plaintext

// Deep link to launch the pet details screen with the first pet whose name starts with "a"
adb shell am start -W -a android.intent.action.VIEW -d "http://github.com/johannrosenberg/jetmagic/sample/pet_info?name=a" io.github.johannrosenberg.jetmagic
// Deep link to launch the deep link screens.
adb shell am start -W -a android.intent.action.VIEW -d "http://github.com/johannrosenberg/jetmagic/sample/deeplink" io.github.johannrosenberg.jetmagic
// Deep link to launch the screen that shows an unknown url.
adb shell am start -W -a android.intent.action.VIEW -d "http://github.com/johannrosenberg/jetmagic/sample/kittens" io.github.johannrosenberg.jetmagic