Hi I am creating a app in which I used twitter4j lib for integration of twitter in my app which works successfully for below 2.3 but when I run application on 4.o application gets closed. Here : 1. I used default browser for twitter 2. and I want to use Web view instead of browser. So How to deal with twitter lib using web view ? to use browser I do following changes in AndroidMainfest.xml
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="oauth" android:host="t4jsample"/>
</intent-filter>