greenrobot/EventBus

Could not resolve org.greenrobot:eventbus:3.3.1.

582527512 opened this issue · 3 comments

It's ok before then. After update gradle version to 7.4.2 , there got these question
"Could not resolve org.greenrobot:eventbus:3.3.1."
"Possible solution:

EventBus is available on Maven Central, as noted in the README. If you have Maven Central added to the repository section of your project it should be found:

repositories {
    mavenCentral()
}
HJHL commented

Check settings.gradle file in your project,

dependencyResolutionManagement {
  repositories {
    // check if it exists, add it if not
    mavenCentral()
  }
}