Hi
I am trying to catch the intent that is fired when someone clicks on a hyperlink to a web page in the Mms browser. I have this in the manifest:
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="http" />
</intent-filter>
However, when I click on http://www.ibm.com it only launches Browser. Same when I do $ am start -a android.intent.action.VIEW -d http://www.ibm.com in an adb shell. Any ideas what I am doing wrong?
Thanks very much, c