You may have already tested it, but just try to declare your actions the full way (although you already declared it in the package tag). So instead of using
<activity android:name=".TwitterLogin" />
using
<activity android:name="com.examples.Kikin.TwitterLogin" />
Sometimes this causes problems.
I know this is an old thread, but I m having the same problem and in my case specifying full package name doesnt help. Have you found a solution? I am very interested to know how to avoid this error.
source
share