Hey guys, i am trying to migrate from V2 to V3 and...
# koin
g
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
I've removed jcenter and haven't had any problems. Do you also have mavenCentral() ?
g
Hi @kevindmoore, yes i do.
k
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
Thanks for sharing these @kevindmoore i will surely update once i get it working