colorpicker
colorpicker copied to clipboard
AAR usage of "compile" in README is deprecated
The usage of an .aar file in Android can now be archived with a creation of an libs directory in your app directory and then used as an dependency in your app/build.gradle as follows:
dependencies {
// other dependencies...
// Color picker one:
implementation files('libs/color_picker_lib_filename.aar')
}