Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Studio 3.0 Canary 5 - Error:Unable to load class 'org.gradle.api.internal.component.Usage'

I have read through all of the existing stack questions relating to this and their solutions did not help me.

  • This problem has been evident since all AS updates above 2.3.
  • Creating a new project is ok and builds
  • I've attempted to copy all values from the 'new project' but it still persists

The error:

Error:Unable to load class 'org.gradle.api.internal.component.Usage'. Possible causes for this unexpected error include:

  • Gradle's dependency cache may be corrupt (this sometimes occurs after a network connection timeout.) Re-download dependencies and sync project (requires network)
  • The state of a Gradle build process (daemon) may be corrupt. Stopping all Gradle daemons may solve this problem. Stop Gradle build processes (requires restart)
  • Your project may be using a third-party plugin which is not compatible with the other plugins in the project or the version of Gradle requested by the project.
In the case of corrupt Gradle processes, you can also try closing the IDE and then killing all Java processes.

gradle-wrapper.properties

distributionBase=GRADLE_USER_HOME 
distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-milestone-1-all.zip

Project build.gradle

buildscript {
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.0-alpha5'
        classpath "io.realm:realm-gradle-plugin:0.89.1"
    }
}

allprojects {
    repositories {
        google()
        jcenter()
        maven { url 'https://jitpack.io' }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

Settings Gradle

Use default gradle wrapper

Module Settings

Compile Sdk Version: API 26
Build Tools Version: 26.0.0

I believe these are all the latest available. And I have tried invalidate caches & restart / rebooting the machine

like image 393
behelit Avatar asked Jul 10 '17 07:07

behelit


1 Answers

I tried all the above suggestions for deleting cache and nothing worked for me. In the end, the problem was the plugin com.novoda:bintray-release:0.4.0. When I upgraded it to 0.5.0, it worked.

I would take a hard look at your gradle plugins!

like image 59
Lisa Wray Avatar answered Nov 01 '22 12:11

Lisa Wray