ductran
ductran

Reputation: 10203

Can't setup Google play service library for Google Drive in eclipse

I want to integrate Google Drive api in my app. I follow this tutorial to setup an example and this link to setup Google Play Service library. The problem is when I link Google play service library to my project, I got these issues:

Here is my detail: enter image description here

enter image description here enter image description here Does anyone know these problems?

Upvotes: 0

Views: 643

Answers (2)

seanpj
seanpj

Reputation: 6755

There is a little bit of info here: https://github.com/seanpjanson/140201-gdaa (see readme.txt, point 4c). You may find some info bits useful. The easiest HACK is to just stick version number from "version.xml" (like 4132500 for libver 14) in your manifest.

Upvotes: 0

Nitin Misra
Nitin Misra

Reputation: 4522

In you Manifest.xml add this tag within <application> tag

 <meta-data
            android:name="com.google.android.gms.version"
            android:value="@integer/google_play_services_version" />

Upvotes: 1

Related Questions