Information from Google Developers Portal:
- Open the build.gradle file inside your application directory.
- Add a new build rule under dependencies for the latest version of play-services. For example:
apply plugin: 'android'
...
dependencies {
compile 'com.android.support:appcompat-v7:+'
compile 'com.google.android.gms:play-services:4.0.30'
}
But this is instruction for standart Google Play Services. Google Play Services for Froyo is a different module. I've never worked with Gradle - what I need to do to add Google Play Services for Froyo?