Open
Description
This one is confusing me.. I was using the color picker just fine yesterday and now today the project is failing to build with the compiler error:
/Users/jpage/working/projects/hubitat-dashboard/app/src/main/java/com/jpage4500/hubitat/ui/fragments/DashboardFragment.java:654: error: cannot access KMappedMarker
group.registerPicker(dialogLayout.colorSeekBar);
^
class file for kotlin.jvm.internal.markers.KMappedMarker not found
It's complaining about the lines here:
PickerGroup<IntegerHSLColor> group = new PickerGroup<>();
group.registerPicker(dialogLayout.colorSeekBar);
group.registerPicker(dialogLayout.saturationSeekBar);
group.registerPicker(dialogLayout.lightnessSeekBar);
I imagine this isn't related to your library since it was building just fine yesterday. But, I can't figure out what changed or why it's now all of the sudden failing to compile so I figured someone here might have an idea why