Could not find org.koin:koin-core:2.2.2

Viewed 7691

I have recently removed jcenter() repository from the project-level build Gradle.

Since then Koin (version: 2.2.2) started giving me the compile-time error below:

Could not find org.koin:koin-core:2.2.2

2 Answers

Now use implementation "io.insert-koin:koin-core:3.0.1" and remove jcenter from project build.gradle

Related