I am trying to use your library alongside using deeplinks for my app. (like myapp://myPath) The library works well when I share any content with the app. However, on Android, I cannot get it to accept deeplinks.
On iOS, your library correctly understand the "myapp://myPath" link and sets the json received in React Native as:
Hi,
I am trying to use your library alongside using deeplinks for my app. (like myapp://myPath) The library works well when I share any content with the app. However, on Android, I cannot get it to accept deeplinks.
On iOS, your library correctly understand the "myapp://myPath" link and sets the json received in React Native as:
However, on Android, this doesn't happen. I have added the intent filter in my AndroidManifest as I am supposed to:
When I call the link
myapp://myPath
from a browser on Android, the app opens, but the partReceiveSharingIntent.getReceivedFiles()
never gets called.While whole react native code is:
Am I missing anything that I am supposed to do on Android?