Can't use Droidparts' ClearableEditText

Viewed 287

I'm trying to use ClearableEditText as stated in the Droidparts official doc :

<org.droidparts.widget.ClearableEditText
     android:drawableRight="@android:drawable/ic_action_remove"
     android:drawablePadding="12dp" />

But the component is not found, I get this error at runtime :

java.lang.ClassNotFoundException: Didn't find class "org.droidparts.ClearableEditText"

I'm importing the dependency like this :

compile 'org.droidparts:droidparts:3.2.5'

I looked at the content of the JAR and I don't find the "widget" folder. enter image description here

Is the component not available anymore or am I doing something wrong ?

1 Answers

Got it, ClearableEditText belongs to :

'org.droidparts:droidparts-misc:3.2.5'

insead of

'org.droidparts:droidparts:3.2.5'

Related