1

I am using this library Here is a link I have already tried this link to solve the problem Here is a link But in vain.... But still problem is existing in gradle sync... Error of picture

Dima Kozhevin
  • 3,602
  • 9
  • 39
  • 52
Bilal Mustafa
  • 750
  • 7
  • 16

2 Answers2

3

You may want to take a closer look at the first link you provided. Here is a snippet from the readme of what you need to do:

Add this to your app/build.gradle repositories:

maven { url 'https://jitpack.io' }

Community
  • 1
  • 1
Pablo Baxter
  • 2,144
  • 1
  • 17
  • 36
1

Add this to your app/build.gradle repositories:

maven { url 'https://jitpack.io' }

After that you should have like:

apply plugin: 'com.android.application'

repositories {
    maven { url 'https://maven.google.com' }
    maven { url 'https://jitpack.io' }
}

android {
...
Dima Kozhevin
  • 3,602
  • 9
  • 39
  • 52