colorpicker icon indicating copy to clipboard operation
colorpicker copied to clipboard

AAR usage of "compile" in README is deprecated

Open ManuelTS opened this issue 5 years ago • 0 comments

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')
}

ManuelTS avatar Jul 14 '20 06:07 ManuelTS