The project seems to build fine, and I see it down...
# getting-started
p
The project seems to build fine, and I see it downloading that library, but it then doesn't seem to be in my class path. I feel like I must be skipping some obvious step.
e
Hey, strange thing. Could you please shade light on how you detected it's not in your classpath? Also, great to clarify the following questions: 1. Is your project single module? 2. What File -> Project Structure looks like? 3. Can you check run comman in debug console - is there anything about your the library?
I think you have extend you repositories section. Try to add this into your `settings.gradle.kts`:
Copy code
pluginManagement {
    repositories {
        gradlePluginPortal()
        jcenter()
        mavenLocal()
        mavenCentral()
        maven { url = uri("<https://oss.sonatype.org/content/repositories/snapshots/>") }
    }
}
and make sure
repositories
section looks like this:
Copy code
repositories {
    jcenter()
    mavenLocal()
    mavenCentral()
    maven { url = uri("<https://oss.sonatype.org/content/repositories/snapshots/>") }
}