I am trying to use Google Drive in my Android app. So far I'm only trying to display the file names on the Google drive. I used this https://developers.google.com/drive/quickstart-android tutorial to set up a Google account in my application and this https://developers.google.com/drive/v2/reference/files/list to retrieve a list of files.
To do this, I had to create an async task:
private class getCloudContentTask extends AsyncTask<Void, Void, Void> { protected void onPostExecute() { updateList(); } @Override protected Void doInBackground(Void... arg0) { cloudFiles = getCloudContent(); return null; } }
getCloudContent is basically the retrieveAllFiles function from the tutorial.
However, I always get a couple of warnings and errors, and the files will not be displayed.
01-09 19:39:31.347: W/dalvikvm(27926): VFY: unable to resolve static field 1488 (common_google_play_services_unknown_issue) in Lcom/google/android/gms/R$string; 01-09 19:39:31.347: D/dalvikvm(27926): VFY: replacing opcode 0x60 at 0x0004 01-09 19:39:31.446: W/GooglePlayServicesUtil(27926): Google Play services out of date. Requires 2012100 but found 1015 01-09 19:39:31.446: E/GoogleAuthUtil(27926): GooglePlayServices not available due to error 2 01-09 19:39:31.456: I/System.out(27926): An error occurred: com.google.api.client.googleapis.extensions.android.gms.auth.GooglePlayServicesAvailabilityIOException
I have the latest installation of Eclipse Juno with the Android SDK and the latest Google Play service. I am using an emulated device. Google-play-services.jar is in the reference libraries of my project. The google api v2 drive is also included as described in the manual described.
Any help is appreciated!
source share