i import com.github.QuadFlask:colorpicker
with aar
file to my project but after gradle sync i see this error and i cant resolve this :(
Asked
Active
Viewed 1,245 times
-1
1 Answers
1
You can see on Github how to import this library properly.
This library is not released in Maven Central, but instead you can use JitPack
add remote maven url in allprojects.repositories
allprojects {
repositories {
maven { url "https://jitpack.io" }
}
}
then add a library dependency
dependencies {
compile 'com.github.QuadFlask:colorpicker:0.0.13'
}

just
- 1,900
- 4
- 25
- 46
-
at the first i use this way and i cant resolve this error : Error:(33, 13) Failed to resolve: com.github.QuadFlask:colorpicker:0.0.13 – MohamadReza Balanian Jul 24 '17 at 17:00