I'm using MultiChoiceAdapter for ActionBarCompat and I'm having NoSuchMethodException: startActionMode
. My gradle installation is compile 'com.github.manuelpeinado.multichoiceadapter:multichoiceadapter-abc:3.0.0'
that's all.
Logcat
2755-2755/ W/System.err﹕ java.lang.NoSuchMethodException: startActionMode [interface android.support.v7.view.ActionMode$Callback]
2755-2755/W/System.err﹕ at java.lang.Class.getConstructorOrMethod(Class.java:423)
01-12 10:59:22.604 2755-2755/W/System.err﹕ at java.lang.Class.getMethod(Class.java:787)
01-12 10:59:22.608 2755-2755/W/System.err﹕ at com.manuelpeinado.multichoiceadapter.extras.actionbarcompat.MultiChoiceAdapterHelper.startActionMode(MultiChoiceAdapterHelper.java:37)
01-12 10:59:22.608 2755-2755/W/System.err﹕ at com.manuelpeinado.multichoiceadapter.MultiChoiceAdapterHelperBase.checkItem(MultiChoiceAdapterHelperBase.java:115)
01-12 10:59:22.612 2755-2755/W/System.err﹕ at com.manuelpeinado.multichoiceadapter.MultiChoiceAdapterHelperBase.setItemChecked(MultiChoiceAdapterHelperBase.java:103)
01-12 10:59:22.612 2755-2755/W/System.err﹕ at com.manuelpeinado.multichoiceadapter.MultiChoiceAdapterHelperBase.onItemLongClick(MultiChoiceAdapterHelperBase.java:205)
01-12 10:59:22.616 2755-2755/W/System.err﹕ at android.widget.AbsListView.performLongPress(AbsListView.java:2854)
I've followed everything the sample folder told me too and had no problems with Eclipse version of it. Any fixes for this?
Thank you!