onNewIntent() not getting called in some devices
I am implementing Oauth (twitter, google) for an Android application and some users have complained because they cannot log in; after analysing the problem I saw that in some devices sometimes the onNewIntent() is not called and onCreate() method is called instead. So it seems that there is something wrong with activities' tasks, instances,.. Here is my code: AndroidManifest.xml <activity android:name="LoginActivity" android:launchMode="singleTask" android:screenOrientation="portrait"> <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent