Gradle thinks 2.10 is less than 2.2 when resolving plugins

This is coming out of the Android Gradle plugin, they only accept 2.2 - 2.9:

https://android.googlesource.com/platform/tools/base/+/master/build-system/gradle/src/main/groovy/com/android/build/gradle/BasePlugin.java#113

There’s a com.android.build.gradle.overrideVersionCheck system property you can set to override that check. A change would need to be made to the Android plugin to accept 2.10+.

1 Like