How to Add Google Play Services to Android Studio Project

Hey developer, today I’ll show you How to Add Google Play Services to Android Studio Project. Google Play Services is very easy to add to the eclipse project, simply import the play services to the workspace and add it as a library project but if you want to add play services to the Android Studio project then follow the below steps.

  1. Open the build.gradle >> Go to the module directory.
  2. Add a new dependencies of the latest version of play-services.
  3. Ensure that you’re top-level build.gradle contains a reference to the google() or to maven { url "https://maven.google.com" }.
  4. Save and click Sync Project with Gradle Files in the toolbar.
dependencies {
    implementation 'com.google.android.gms:play-services:7.0.0'
}

now you can able to developing features with the Google Play services APIs.

Find all different types of Individual APIs on play services support.

Recommended Reading:

I hope you liked the post, please share the post with other developers. If you have any questions regarding this post. Feel free to comment.

Happy Learning!!!

20 Comments

Leave a Reply

Your email address will not be published. Required fields are marked *