Closed ghost closed 4 years ago
I had to force a higher version for com.google.android.gms. I am currently using 15.0.1, which appears to work. This version is requested by the google maps plugin by google.
To work around this I added the following the build.grade:
subprojects { project.configurations.all { resolutionStrategy.eachDependency { details -> if (details.requested.group == 'com.google.android.gms') { details.useVersion "15.0.1" } } } }
This works, but a proper fix would be to raise the upper version bound.
It also produce errors with firebase, because firebase uses higher gms version
Sorry for the delay. It's fixed in the latest release 1.0.0.
I had to force a higher version for com.google.android.gms. I am currently using 15.0.1, which appears to work. This version is requested by the google maps plugin by google.
To work around this I added the following the build.grade:
This works, but a proper fix would be to raise the upper version bound.