Execution failed for task ':app:checkDebugAarMetadata'.
Could not resolve all files for configuration ':app:debugRuntimeClasspath'. Could not find colorpicker-0.0.13.aar (com.github.QuadFlask:colorpicker:0.0.13). Searched in the following locations: https://jitpack.io/com/github/QuadFlask/colorpicker/0.0.13/colorpicker-0.0.13.aar
Possible solution:
build.gradle (app)
allprojects {
repositories {
maven {
url "https://jitpack.io"
}
}
dependencies {
implementation 'com.github.QuadFlask:colorpicker:0.0.13'
}
Add following in your top level build.gradle file
allprojects {
repositories {
maven { url "https://jitpack.io" }
}
}
And then add following dependency in app level dependencies
dependencies {
implementation 'com.github.QuadFlask:colorpicker:0.0.15'
}