Hi guys i have been trying to launch the application from a link on email or from a posting on some social networking websites. I know this question has already been raised by some friends but still the problem that i face is that in some device or some gmail application on the android don't show the anchor tags or link that i have specified.
The intent-filter that i set to my activity is below:
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="myappname" />
And i am sending the email with this anchor tag
myappname://processtobedone/?id=1
It works fine with the email application that i have on Huewai device but in device's default gmail application it is not showing it has an link and in some devices by default it appends https: as suffix for the tag and launches the browser.
Hope you could understand my problem and hoping for the better response.
Thank in Advance.