Android Studio Can Not Resolve Com.google.android.gms.location.places.autocompletefilter
Solution 1:
Add compile 'com.google.android.gms:play-services-places:<version>
, where <version>
is perhaps at least: 9.2.1
under dependencies
in your modules's build.gradle
Solution 2:
In play-services 9.2.0 the places API is no longer located in location. Those are now in their own places dependency. To resolve those you should add this to your build.gradle.
compile'com.google.android.gms:play-services-places:9.2.0'
check out
Solution 3:
The Places API was only added in Google Play services 7.0: you'll need to update your dependency to be at least 7.0.0
, although the latest as of this answer is 15.0.0
.
Note in almost every case, you should use selective APIs to only include the portions of Google Play services you need. In that case, you'd actually use a dependency such as
implementation 'com.google.android.gms:play-services-location:15.0.0'
Solution 4:
Since Play Services version 9.2 we should add the following dependancy to access Google Places API.
compile'com.google.android.gms:play-services-places:11.0.2'
The latest version at the time of this writing.
The accepted answer for this thread was outdated.
Solution 5:
Add following two dependencies in your build.gradle(Module: app)
implementation 'com.google.android.gms:play-services-location:15.0.1'
implementation 'com.google.android.gms:play-services-places:15.0.1'
Post a Comment for "Android Studio Can Not Resolve Com.google.android.gms.location.places.autocompletefilter"