-1

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 :(

Screenshot

1 Answers1

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