Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Raise com.google.android.gms version #27

Closed
ghost opened this issue Jun 15, 2018 · 2 comments
Closed

Raise com.google.android.gms version #27

ghost opened this issue Jun 15, 2018 · 2 comments

Comments

@ghost
Copy link

ghost commented Jun 15, 2018

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.

@rafalbednarczuk
Copy link

It also produce errors with firebase, because firebase uses higher gms version

@lukaspili
Copy link
Contributor

Sorry for the delay. It's fixed in the latest release 1.0.0.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants