Hey guys, i am trying to migrate from V2 to V3 and get rid of the Jcenter dependency in my project. And it seems gradle is not able to recognize the io.insert-koin in my project when trying to import the same in my class. Has anyone faced a similar problem ?
k
kevindmoore
08/19/2021, 2:59 PM
I've removed jcenter and haven't had any problems. Do you also have mavenCentral() ?
g
g4sarma
08/19/2021, 5:26 PM
Hi @kevindmoore, yes i do.
k
kevindmoore
08/19/2021, 5:37 PM
These are my settings:
Copy code
val core = "io.insert-koin:koin-core:${Versions.koin}"
val jvm = "io.insert-koin:koin-core-jvm:${Versions.koin}"
val test = "io.insert-koin:koin-test:${Versions.koin}"
val android = "io.insert-koin:koin-android:${Versions.koin}"
val compose = "io.insert-koin:koin-androidx-compose:3.0.1"
g
g4sarma
08/19/2021, 7:21 PM
Thanks for sharing these @kevindmoore i will surely update once i get it working