Trove4j library cannot be resolved Trove4j library cannot be resolved android android

Trove4j library cannot be resolved


this issue can be resolved by adding jcenter() as a repository in the buildscript section.

buildscript {  repositories {     jcenter()  }  dependencies {    classpath 'com.android.tools.build:gradle:3.0.0-beta2'  }}


Additional to Snicolas' answer:

If you have something like:

allprojects {    repositories {        mavenCentral()        google()        jcenter() //also add it here!!!    }}

In your build.gradle file; also add it there.


Since jCenter will close in May, you should change root/build.gradle so:

buildscript {    repositories {        google()        gradlePluginPortal()    }}allprojects {    repositories {        google()        mavenCentral()        // org.jetbrains.trove4j:trove4j:20160824.        gradlePluginPortal()    }}

See also https://stackoverflow.com/a/66168563/2914140 to add libraries not included in Maven.

Now we can build apk without errors.