Play-Services for Froyo not to be found on gradle?

家住魔仙堡 提交于 2019-12-07 13:51:35

问题


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?

来源:https://stackoverflow.com/questions/21455328/play-services-for-froyo-not-to-be-found-on-gradle

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!