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...
Asked
Active
Viewed 56 times
1
Dima Kozhevin
- 3,371
- 9
- 37
- 51
Bilal Mustafa
- 700
- 6
- 16
2 Answers
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,094
- 16
- 33
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,371
- 9
- 37
- 51
-
Thanks for response.. But still problem :( – Bilal Mustafa Sep 20 '17 at 21:03
-
@BilalMustafa Could you post your app/build.gradle? – Dima Kozhevin Sep 20 '17 at 21:07
-
@BilalMustafa Try to change from `url 'jitpack.io';` to `url 'https://jitpack.io'` – Dima Kozhevin Sep 20 '17 at 21:12