nadi
03/30/2025, 5:56 PMimplementation("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:
> 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?Chrimaeon
03/30/2025, 6:01 PMnadi
03/30/2025, 6:02 PMnadi
03/30/2025, 6:02 PMChrimaeon
03/30/2025, 6:20 PMChrimaeon
03/30/2025, 6:21 PMnadi
03/30/2025, 6:39 PM