im wandering if its technically possible to check whether an android user browses some particular site. I would like to detect if with my own app. Im trying with:
<intent-filter>
<action android:name="android.intent.action.VIEW"></action>
<category android:name="android.intent.category.DEFAULT"></category>
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:scheme="http" android:host="mysamplepage.com"></data>
</intent-filter>
but i cant get any results.
I know that this kind of approach works, because my OAuth client makes this kind of callback to my app. Although im unable to launch my activity from the address bar with the address.
Any suggestions?