Using Android Studio 3.3 Canary 11 with the gradle plugin version 3.3.0-alpha11. It throws the following error when trying to sync gradle
WARNI
It was a problem with latest gradle (in my case 3.3.2) version and Fabric.io plugin.
It is now solved by the new version
Users should have this in their top-level build.gradle:
buildscript {
// ... repositories, etc. ...
dependencies {
// ...other dependencies ...
classpath 'io.fabric.tools:gradle:1.28.0'
}
}