eddieowens / react-native-boundary

Native implementation of geofencing/region monitoring

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

googlePlayServicesVersion does not match play-services-location versions

nmussy opened this issue · comments

I get the following error when trying to build on Android:

Could not find com.google.android.gms:play-services-location:17.4.55.

This matches the googlePlayServicesVersion = "17.4.55" I have set in my project android/build.grade file. As seen in the Android release notes, the latest version of play-services-location is 16.0.0.

After Google Play services 15.0.0, the Play services libraries versions do not have to strictly match, as they follow SemVer. (reference)

I can work around this issue by using the latest version by setting the dependency to implementation "com.google.android.gms:play-services-location:+", but it's not a particularly satisfying solution.