0

I am using retrofit 2 library for network calls.Project is not builing up even after adding dependencies. I have attached the screenshot.

enter image description here enter image description here

2 Answers2

0

In your Fame-Circle's project level build.gradle file (The recently added screenshot),

add:

maven { url 'https://maven.google.com' }

which should now look like:

allprojects {
    repositories {
        jcenter()
        maven { url 'https://maven.google.com' }
    }
}
Sneh Pandya
  • 8,197
  • 7
  • 35
  • 50
0

Try to add below line inside your Frame-Circle main gradle file

allprojects {
    repositories {
        jcenter()
        maven { url "https://jitpack.io" }
        maven { url "https://maven.google.com" }
    }
}
Rohan Pawar
  • 1,875
  • 22
  • 40