Im getting this error when trying to get links to launch my activity from the browser
08-24 16:38:13.877: ERROR/Tab(358): onReceivedError -10 wizi://logout The protocol is not supported.
<activity android:name="UrlActivity">
<intent-filter>
<category android:name="android.intent.category.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.View"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<category android:name="android.intent.category.LAUNCHER"/>
<data android:scheme="wizi" />
</intent-filter>
</activity>
this error is being thrown before onCreate()
is called on UrlActivity
,can anybody see what I'm doing wrong?