hey all :slightly_smiling_face: I'm new to the wor...
# android
n
hey all 🙂 I'm new to the world of android and I'm trying to add 'room' library to use for my persistency layer. im using Kotlin for this. the depedencies are:
Copy code
implementation("androidx.recyclerview:recyclerview:1.3.2")
    implementation("androidx.appcompat:appcompat:1.6.1")


    implementation(libs.androidx.core.ktx)
    implementation(libs.androidx.lifecycle.runtime.ktx)
    implementation(libs.androidx.activity.compose)
    implementation(platform(libs.androidx.compose.bom))
    implementation(libs.androidx.ui)
    implementation(libs.androidx.ui.graphics)
    implementation(libs.androidx.ui.tooling.preview)
    implementation(libs.androidx.material3)
    testImplementation(libs.junit)
    androidTestImplementation(libs.androidx.junit)
    androidTestImplementation(libs.androidx.espresso.core)
    androidTestImplementation(platform(libs.androidx.compose.bom))
    androidTestImplementation(libs.androidx.ui.test.junit4)
    debugImplementation(libs.androidx.ui.tooling)
    debugImplementation(libs.androidx.ui.test.manifest)

    val roomVersion = "2.6.1"


    implementation("androidx.room:room-runtime:$roomVersion")
    ksp("androidx.room:room-compiler:$roomVersion")
I'm using the official instruction of jetpack of how to add the gradle dependencies: https://developer.android.com/jetpack/androidx/releases/room but i get this gradle error:
Copy code
> Could not resolve all files for configuration ':app:kspDebugKotlinProcessorClasspath'.
   > Could not resolve androidx.room:room-compiler:2.6.1.
     Required by:
         project :app
      > Could not resolve androidx.room:room-compiler:2.6.1.
         > Could not get resource '<https://dl.google.com/dl/android/maven2/androidx/room/room-compiler/2.6.1/room-compiler-2.6.1.pom>'.
            > Could not GET '<https://dl.google.com/dl/android/maven2/androidx/room/room-compiler/2.6.1/room-compiler-2.6.1.pom>'.
               > Got SSL handshake exception during request. It might be caused by SSL misconfiguration
i tried other versions combinations and it always fail in the same error 😞 what am i missing?
not kotlin but kotlin colored 2
c
Image from iOS.jpg
n
im using kotlin dsl
maybe i should have mentioned that hehe
c
It’s still a Gradle issue. No matter which dsl you use.
There is a community Gradle slack workspace you can ask for help.
n
okie. 10x.