3

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

Tara
  • 692
  • 5
  • 23

1 Answers1

4

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

Community
  • 1
  • 1
Pavneet_Singh
  • 36,884
  • 5
  • 53
  • 68