java - Launch browsable intent in correct app -
My problem is:
There is an activity in my app that has been declared in the manifest :
& lt; Category android: name = "android.intent.category.BROWSABLE" />
When I click on the link received by SMS, I am using it to launch my app. The problem is that the app is running in the context of the message and when I press the back button, it launches the app in the default context. What do I want, when I click on the link, this app opens in my context how can I fix it?
Managed to work on it on the manifest:
Android: launchMode = "Autotusk"
Comments
Post a Comment