2

I want to use Room DB but when I add dependencies the gradle has an error.

Failed to resolve 'android.arch.persistence.room:runtime:1.0.0'

I have an image of the error:

enter image description here

476rick
  • 2,764
  • 4
  • 29
  • 49
farzaneh
  • 21
  • 3

2 Answers2

2

Add below code in your project build.gradle file.

allprojects {
    repositories {
        jcenter()
        maven { url 'https://maven.google.com' }
    }
}
kinjal patel
  • 585
  • 2
  • 4
  • 12
0

I had the same problem: you have to update: Gradle version, Gradle plugin and the last library version

mehdi musavi
  • 418
  • 2
  • 14