tags:

views:

45

answers:

1

Hi all.I am new to android. I can able to add the data to google calendar via my java application.But the same code is not working in the android.It gives the Exception message

Error connecting with login URI

how to solve this???

+2  A: 

In your AndroidManifest.xml file add

<uses-permission android:name="android.permission.INTERNET"></uses-permission>

But as Christian stated, without seeing any code what so ever, it is just a guess that this is your problem.

Also see "How to solve this ?" that was posted about 30 minutes before yours, same issue.

Ryan Conrad