im having a weird issue where instead of a url should launch my application, it is loading the application into the browser itself, in this case into mozella!
here is the intent filters i am using for my application if anyone can please tell me what im doing wrong.
<uses-sdk android:minSdkVersion="15" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application
android:name=".Globals"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".RSS_ViewerActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.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" />
<data android:scheme="itpc" />
<data android:scheme="pcast" />
<data android:scheme="feed" />
<data android:scheme="feeds" />
<data android:scheme="rss" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/xml" android:scheme="http" />
<data android:mimeType="application/rss+xml" android:scheme="http" />
<data android:mimeType="application/atom+xml" android:scheme="http" />
<data android:mimeType="text/xml" android:scheme="https" />
<data android:mimeType="application/rss+xml" android:scheme="https" />
<data android:mimeType="application/atom+xml" android:scheme="https" />
</intent-filter>
</activity>
<activity android:name="RSSFeedActivity"></activity>
<activity android:name="com.CertificateAuthentication.Authenticator"></activity>
</application>
thanks.
UPDATE
Just a bit more information, when the dialog asking to chose and application to open the link in pops up, it doesnt ever display my app, or any for that matter.
UPDATE
I Removed the 2nd and 3rd intent filters, I attempted to merge the 2 remaining intent filters into 1, but that doesn't load the app from the browser. the code above is what it looks like now and gets me the same results as before =( which is annoying as it means users can have 2 sessions of the application running, one from the browser and one from the launcher.