Hi, I have added a Kotlin library to my project (N...
# android
l
Hi, I have added a Kotlin library to my project (New Module -> Kotlin/Java library). I also added a dependency which I want to use in my code but no matter what I try, AS won't find the class. When I run the task
dependencies
the depency appears in both compileClasspath and runtimeClasspath. My build.gradle.kts:
Copy code
plugins {
    id("kotlin")
}

dependencies {
    implementation("io.github.thanosfisherman.blueflow:blueflow:1.1.2")
}
Solved: I had to add android pugin -.-