I use an intent filter to provide a deep link to the activity of my application. Like in the example below:
https://developer.android.com/training/app-indexing/deep-linking.html
Redirecting my application works fine with Google Chrome and an Android browser, but when I use Firefox, the problem is that Firefox launches a new instance of my application instead of redirecting me to an already running instance of the application. Also, the newly launched application seems to work through Firefox.
Senario is as follows: 1) I am running my application. If the user has forgotten his credentials, I will send him an email. 2) The user navigates to his email application. 3) In the email sent to the user, there is an account activation link, which also redirects it back to the application.
What could be wrong with Firefox? Thank you in advance!
Fivos source
share