Has anyone had some issue with trying to migrating...
# android
g
Has anyone had some issue with trying to migrating Koin from V2 to V3 and getting rid of the Jcenter dependency in the dependency. I was able to sync gradle but i am not able to recognise the io.insert-koin in my project when trying to import the same in my class. Has anyone faced a similar problem ?
😶 3
h
I thinks you can check here: https://insert-koin.io/docs/setup/v3/ and use mavenCentral()
k
If I’m correct there was change in group id for koin
g
@Henry I have followed the same. Seems like android/gradle is acting up a bit
@Kamil Kalisz and what is that exactly ?
k
Copy code
The impact for Koin is the change of the maven group name. We need to change from org.koin to io.insert-koin. Also, check that you are using Maven Central repositories:
@g4sarma
g
Oh yes i have already done that @Kamil Kalisz
k
which exact dependency could not be resolved?
In my code I’m using
Copy code
val koinCore = "io.insert-koin:koin-core:3.1.2"
    val koinTest = "io.insert-koin:koin-test:3.1.2"
e
So not only is this 😶 it's also not Android
h
@g4sarma can you bring your error screenshot here?