Android :: Using Calendar Api - VerifyError Com.google.gdata.client.Service
May 26, 2010
I am trying to integrate the application I am developing with google calendar. The code I wrote for the calendar integration works in a java standalone project.
The problem is that I am getting an error when in my app I do the actions that uses the code that "talks" to the calendar api. I have created a "libs" folder in the root of my app project to put all the libraries I need. Then add jar from the build path config screen (in eclipse).
The error: 05-26 14:18:54.512: ERROR/AndroidRuntime(3522): *java.lang.VerifyError: > com.google.gdata.client.Service*
View 3 Replies
May 11, 2009
Is it possible to get the calendar's entries from the phone offline? It seem the only way is to use gdata-java-client.
View 4 Replies
View Related
Jan 8, 2010
I've got working code that uses the gdata to retrieve feeds from my user's Google Finance portfolios, but I had to use setUserCredentials(username,password). What I'd like to do is avoid asking the user for their username/password since the Android device already has access to their Google account.
I believe I should be able to do this with setUserToken(String), but I can't figure out how to get the appropriate token from Android. I've tried AccountManager.get(context).blockingGetAuthToken() but that's either not the correct call or I'm passing it the wrong arguments. Has anyone gotten gdata working with the user's existing Google credentials on the phone?
View 1 Replies
View Related
Feb 20, 2009
I run the 1.0r1 emulator and install Calendar.apk and CalendarProvider.apk on the emulator. And I configure the username and pwd from DevTools->Google Service Login successfully. Now I can start the Calendar app successfully, with the month view/week view/etc. But I don't know how to sync the calendars or events with Google Calendar service. From the source code, I assume there should happen sync operation. But it didn't happened. And I know another trigger to sync is Menu->More->My Calendars, but after selected, the activity will crash. The below is from DDMS logcat: 02-21 00:59:44.260: INFO/ActivityManager(56): Starting activity: Intent { action=android.intent.action.VIEW comp=..................
View 2 Replies
View Related
Apr 27, 2010
I want to add, delete, update mobile Calendar events. may i use gdata for it. if yes then my code is
CODE:.......
I am using gdata 1.41.1 and google android api level 3 exception in line number 1 is java.lang.VerifyError: com.google.gdata.client.Service
reason of using gdata is http://stackoverflow.com/questions/2713652/android-problem-deleting-event-in-calender
View 1 Replies
View Related
Jun 29, 2010
I am using Android API level 3. Using g-data 1.41.3 version. i am using Calendar Sample.
My code is follows:
CODE:........
From different forum i concluded that g-data only provide me to insert, delete and update Calendar. But i am facing problem that i mention above.
Is it possible to delete, insert and update Android Calendar and Events?
View 3 Replies
View Related
Apr 1, 2010
I'm working on a program whose job is to parse a schema from a course at university (html) and synchronize it with a calendar in Google Calendar. A must-have requirements from the author is that the user must enter their user information (x...@gmail.com) then connect via the Calendar API to calendar services. ** The smartphone calendar via Intent is not okay to use **
The main problem is that there is no GData (Dalvik Java) for Android. But I checked on GitHub and found that there seems to be something going on com.google.wireless.gdata: http://android.git.kernel.org/?p=platform/external/gdata.git,a=summary Searched around and found some packets like simply-android-GData and GData on code.google.com, but none of them help with the structure of calendrar, and they can login to retrieve data rss, json, atom.
So my question is then whether someone has a solution that works quite well as a possible. next update of the SDK will provide, a full GData API?
Is it possible to compile a custom SDK from git and get with the functionality of git://android.git.kernel.org/platform/external/gdata.git?
Minimum functionality: View Calendars View Events Add Events Delete Events
View 4 Replies
View Related
Jul 1, 2010
I am currently using gdata vesion 1.41.3 and android api level 3. i am trying to use the Calendar feature of gdata. my source code is]
CODE:.......
The code throwing following Exception: com.google.gdata.util.common.xml.parsing.SecureGenericXMLFactory$SecureSAXParserFactory.
View 1 Replies
View Related
Apr 19, 2010
I am wondering what my options are for using GData and specifically the analytics api on android to build a small widget. After searching around for a while I couldnt come up with any libraries with decent examples.
Are there any dedicated libraries with some decent examples / doco to do this sort of thing? I would like to target 1.5 but if the are 2.0 only I guess that is fine too.
View 1 Replies
View Related
Oct 24, 2010
I am creating a service client and the following lines give me error. I was wondering how to fix these... // I have put in the service client stuff below...
private CheckZone mBoundService; private ServiceConnection mConnection = new ServiceConnection() { public void onServiceConnected(ComponentName CheckZone, IBinder service) { // This is called when the connection with the service has been // established, giving us the service object we can use to // interact with the service. Because we have bound to a explicit // service that we know is running in our own process, we can // cast its IBinder to a concrete class and directly access it. mBoundService = ((CheckZone.LocalBinder)service).getService();
//This line complians about binding, and states that it can not be resolved. How do I fix this please? Toast.makeText(binding.this, "Connected to CheckZone", Toast.LENGTH_SHORT).show(); }
View 2 Replies
View Related
Sep 3, 2010
How can I create a WCF service for Android client.
View 1 Replies
View Related
May 26, 2009
I've read some of the earlier posts on this subject, but I've found them confusing.I'm trying to create a Client Application using Android 1.5 that can call a .NET Web Service using SOAP.I understand that the kSOAP2 library can help here and I've imported that into my Project.I need assistance in correctly using the kSOAP2 library to develop the application.
View 2 Replies
View Related
Jan 9, 2010
How do I implement SOAP Web service client on Android? Can someone point me to any examples?
View 5 Replies
View Related
Nov 10, 2009
I'm a new Droid Eris user and have been using Google Calendar for some time.I have a single calendar set up which is syncing with the Eris.I can successfully add/edit/delete entries from both applications and have them show up just fine on the other side.I have a couple of recurring entries that I've since deleted in Google Calendar but are still showing up on my Eris.The unique thing about both of these entries is that they were meeting requests sent to my Gmail address and accepted from there.They have since been cancelled from the original sender and are now removed from my Google Calendar.My calendar entries are labeled as dark blue, and these two show as light blue.I cannot select them on the Eris to edit or delete them.
View 3 Replies
View Related
Feb 9, 2010
I have a Service for my Android app that performs HTTP calls. The Service stores cookies in a CookieStore. I am trying to find a way to persist the CookieStore but I haven't been successful. I don't want the user to log in every time to receive a new CookieStore.
I tried to use SharedPreferences to store the CookieStore as a string, but I can't re-construct the CookieStore with a String.
Has anyone else had success in persisting a CookieStore?
View 1 Replies
View Related
Jul 26, 2010
In the implementation of my remote service's published API, is there a way to identify which client called a given method? For example, is there a way to obtain a unique ID or address of the caller? I already cache an AIDL callback reference to the client, but not sure how I can use this for identification.
View 4 Replies
View Related
Jul 15, 2010
I have two gmail accounts and when I go to the settings for the calendar to sync, I get the three options of My Calendar, Pc Sync and my first gmail email account.I can't get the second email account to show. That is the calendar I need synced.
View 10 Replies
View Related
Aug 4, 2010
Today, I managed to sync. my Lotus Notes calendar with google calendar (after 2 days of turmoil)Then the notes events were displayed on google calendar but 6 hours ahead (like GMT) thought both calendars were set on the same time zone (CST).At this point, the calendar pad widget synced with google calendar and displayed all my lotus notes events 6 hours ahead as in the google calendar.I then changed my google calendar time zone to GMT so that my lotus notes events showed the correct time .But now, the calendar pad widget still shows the old google calendar events that was 6 hours off even after syncing.Can some one please help configure such that my lotus notes , google calendar and calendar pad widget all show the same events at same time (hopefully, maintaining the same time zone settings for all)
View 3 Replies
View Related
Feb 12, 2009
I am getting the below error when ever i am trying to call the bind service. 02-12 20:17:25.486: WARN/ActivityManager(58): Unable to start service Intent { action=oem.android.proj2.IRemoteService }: not found
I have created the Client-Server application. At the Server site i have used the AIDL to impliment the interfaces in my Service class. At Client site i have exposed the AIDL interfaces and have one Activity that mainly do the IPC mechanism , i mean ServiceConnection, bindService and then call the Serivce of the Client site. But i am getting the error i mentioned during the bindService call.
Could you please let me know the steps mainly i have to follow to run the Client -Server Application. For time being i am running the Client .apk first and then the Server .apk, but the server one giving me error.
It would be great if you could let me know what all permission short of thing to take care, as my Client and Server code are placed at different APks, so do i need to import the Client project in my Server Project, if yes then how to impliment that.
View 1 Replies
View Related
Jul 9, 2009
I'd like to be able to send a POST request from an Android app to App Engine and have it linked to the user's Google account.I read that you need to obtain an authentication token and send it with the POST request. Does Android provide a way to request this token?And how would GAE process it?I feel like this should be easy and I'm missing something obvious.
View 2 Replies
View Related
Aug 15, 2013
Problem: Appointments / events created on my LG Optimus G were not syncing to desktop Google Calendar. No problem with appointments / events created on desktop syncing down to phone. Problem Identification: Default calendar when creating appointment / event on phone was calendar called "Phone". There is no calendar on desktop called "Phone". Solution: Pick different calendar when creating an appointment / event on your phone.
View 5 Replies
View Related
Nov 28, 2010
Got fresh new 2.2 Froyo after I decided to stop pussing out and root/install vodafone stripped ROM.I'm liking the speed improvement for sure things appear smoother. However, I hate HTC Calendar and the way it has sync problems with Google Calendar, i would much prefer the stock Android Google Calendar. Anyone know where I can grab the latest one that comes with non-HTC Froyo so I can make my life better?And for anyone skittish about rooting don't be! It's easy and you won't regret it.it's awesome having the access to just remove whatever files you want whereever they are and customize things.
View 1 Replies
View Related
Jan 13, 2010
I have an iCal calendar at work that's on a password-protected server which I'd like to add to my Google calendar (and subsequently, my Droid).I have the URL for it, and can enter the URL into Google's "Add Calendar" setting, but nothing's showing up because,I'm guessing, my iCal is waiting for a password.I don't see any way to add that to the "Add Calendar" setting.
View 2 Replies
View Related
Jan 25, 2010
I haven't been able to figure out how to do this and the only way I can get to my Google calendar is to go thru the browser and log in.
View 11 Replies
View Related
Nov 15, 2010
On my Google calendar (on the Desktop) I subscribe to a calendar showing all Red Wings games. (I just searched under Add > Browse Interesting Calendars. For the life of me I can't get it to show up on my phone. It doesn't show up in my calendars list under the menu. I've had this problem for weeks. Any ideas?I'm using a Droid 2.I'd be fine with just copying all the events to my google calendar instead of just subscribing to an outside calendar, but I don't know how to do that either.
View 5 Replies
View Related
Jun 13, 2009
Has anyone had success using Google Data APIs Client Libraries. I can't seem to successfully use the GData Java client libraries in an Android app. I notice that there used to be some GData access classes in the Wireless packages that have been removed. Should I be using some map data classes in the com.google.android.maps classes I'm not seeing? I started to go down the path of accessing data through raw http calls, but it's a beating.
View 3 Replies
View Related
Jun 15, 2010
I did a search but cant seem to find an answer. I finally got my work email set up through active sync. Is there a way to get the calendar events to show up on my google calendar? I use calendar pro which I love. I don't know if there is a work around or I am just not knowledgable enough to understand it. A for instance would be that my work email gives me an event or invite...it will show up on the phones calendar but not on my google calendar/events. (my google notification each morning may say "no events scheduled for the day" but phone calendar/calendar pro will show it)
View 3 Replies
View Related
Jul 26, 2010
I am new to Android, Google calendar and the Captivate phone. Have successfully imported my old calendar to Google Calendar which initially synced with the calendar on my captivate. However, when I add a new event to my phone calendar, it does not automatically show up on the Google calendar. the Samsung rep told me I have to edit each new even to mark it as a "Google Calendar". Is there any way to make this the default option on the Captivate phone? I am hoping to have automatic syncronization b/t the phone and the Google calendar without having to force it to do so each time.
View 15 Replies
View Related
Jul 29, 2009
Does events made in the phones calendar sync to Google Calendar? Does all sub calendars show on the phone? haven't really found any information on this topic, so please share info, video, pictures.
View 2 Replies
View Related
Jan 10, 2013
I have a HTC Thunderbolt and use all the Google tools for my calendar, email and contacts. At work I have Outlook 2007. I would REALLY like to have my Outlook calendar (at minimum) pushed/synchronized to my phone. Is there an app or a way to configure this to work? Right now I am using the Outlook Web Mobile app for my email and I can view my calendar there but I would like schedule/calendar all in one place.
View 2 Replies
View Related