Testing

iOS Testing Script

You can test iOS deep links in the simulator with these commands:

bash
xcrun simctl openurl booted "myapp://path"
xcrun simctl openurl booted "https://example.com/path"

Android Testing Script

For Android emulators, use these adb commands:

bash
adb shell am start -W -a android.intent.action.VIEW -d "myapp://path" com.example
adb shell am start -W -a android.intent.action.VIEW -d "https://example.com/path" com.example