Tara
Tara

Reputation: 700

Android google play services not working properly

i just update google play services package, but its not working for me.Also i add

<meta-data
            android:name="com.google.android.gms.version"
            android:value="@integer/google_play_services_version" /> 

to manifiset and compile 'com.google.android.gms:play-services:6.1.+' to build. gradle but its not working for me.

import libraries

Upvotes: 3

Views: 785

Answers (1)

Pavneet_Singh
Pavneet_Singh

Reputation: 37404

You are still using an old version of PLAY Service because Places was added in version v.9.4 as mention in the official docs releases too

so simply update your gms dependencies to latest one i.e.

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

You can also add individual API using appropriate version as mention under Table 1 here

So use individual API if you can because this will avoid the need of Multudex in future although there is no Individual APP INDEXING API build.gradle description mention in the docs

Upvotes: 4

Related Questions