QuadFlask / colorpicker

🍭color picker for android
1.22k stars 219 forks source link

AAR usage of "compile" in README is deprecated #124

Open ManuelTS opened 4 years ago

ManuelTS commented 4 years ago

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