问题
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