3

I know that there is a new way of handling Maps in our applications, specifically if we want to have support for Android 2.2 and below. The new library google-play-services-for-froyo can be downloaded via the SDK Manager

But I can't seem to find the gradle URL. Gradle, please only gives the

compile 'com.google.android.gms:play-services:4.1.32'

standard line.
I was able to find the following in the Manifest.xml of the downloaded library in the "extras" folder on my hard drive:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.google.android.gms"
    android:versionCode="3265130"
    android:versionName="3.2.65 (834000-30)" >

But when I try to sync

compile 'com.google.android.gms:play-services:3.2.65'

I dont seem to get the correct version an when I sync

compile 'com.google.android.gms:play-services-for-froyo:3.2.65'

I don't get anything but an error

So the question is: where can I find the play services fro froyo on gradle?

avalancha
  • 1,457
  • 1
  • 22
  • 41
  • 3
    in fact you are looking for maven aar file with this lib ... short answer they didnt provided ... you have to import `ANDROID_SDK\extras\google\google_play_services_froyo\libproject\google-play-services_lib` as module into your Project in Android Studio, then add this module as dependency to your main app module in standard way ... – Selvin Jan 30 '14 at 11:39
  • so why didn't they? is there a reason? – avalancha Mar 19 '14 at 07:16
  • 1
    You shouldn't need to add it to Android Studio as a module. I'm assuming you've seen http://stackoverflow.com/a/20640084/507339 . So the question is why don't you seem to get the correct version when you sync using compile 'com.google.android.gms:play-services:3.2.65'? What goes wrong? It is supposed to be the correct procedure. – Nilzor Jun 06 '14 at 13:53

0 Answers0