Shan
Shan

Reputation: 2832

My browser is not showing up in the default list

I have a problem relate to my "TextOnly" Browser for Android regarding browser in the list.I added this code from this question

   <intent-filter>
   <action android:name="android.intent.action.VIEW" />
   <category android:name="android.intent.category.DEFAULT" />
   <data android:scheme="http"/> 
   </intent-filter>

But the problem now is it shows up in the list only when links are opened from Twitter..when links are opened from Facebook it's not showing up..but other browsers (Opera,Skyfire) are getting displayed...

Upvotes: 0

Views: 106

Answers (1)

ramdroid
ramdroid

Reputation: 6798

Maybe <data android:scheme="https"/> is missing?

Upvotes: 3

Related Questions