QuadFlask / colorpicker

🍭color picker for android
1.22k stars 219 forks source link

ERROR: Failed to resolve: com.github.QuadFlask:colorpicker:0.0.13 #112

Open DipeshChouhan opened 5 years ago

mspitzna commented 5 years ago

Same problem for me.

caizhixing commented 4 years ago

Did you forget this? allprojects { repositories { maven { url "https://jitpack.io" } } }

Nasib555 commented 4 years ago

I was facing the same issue but.... buildscript {

repositories {
    google()
    jcenter()
maven { url "https://jitpack.io" }
}

this was the problem....

fixed by doing this allprojects { repositories { google() jcenter() maven { url "https://jitpack.io" } } }