I\'m creating a deep/dynamic link following this github project.
Here\'s the link which is getting created: https://appcode.app.goo.gl/?link=http://example.co
I also faced this problem. The issue was the link which I'm receiving is "Long link". We can create two types of links from firebase:
So that's why I'm facing this issue. I solved it by fetching the whole link from
Uri uriData = intent.data
And to fetch particular query param from the link:
String email = uriData.getQueryParameter("email")
I hope it will help anyone!!