How to test deep linking on Android?

  1. SDK Version: 33.0.0
  2. Platforms(Android/iOS/web/all): Android

I am trying to test Deep linking(locally) on Android. I was able to test on iOs with this link:

xcrun simctl openurl booted exp://127.0.0.1:19000/–/challenges/[SHARE-TOKEN]

For Android I tried:

adb shell am start -W -a android.intent.action.VIEW -d “exp://192.168.100.7:19000/–/challenges/[SHARE-TOKEN]” com.myapp.android

But I get this message: Error: Activity not started, unable to resolve Intent.

(ref: Redirecting to https://reactnavigation.org/docs/deep-linking)

Is there any way I can test deep linking on Android or am I missing something?

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.