-5

i am trying to add module and but its gvien error like this:

Caused by: java.lang.ClassNotFoundException: Didn't find class "com.anghatechsolution.eww.datetimepicker.SlidingTabStrip" on path: DexPathList[[zip file "/data/app/com.anghatechsolution.eww.datetimepicker-1/base.apk"],nativeLibraryDirectories=[/vendor/lib, /system/lib]]

can any one having idea about this.

roshan_nazareth
  • 311
  • 5
  • 16
subhash
  • 41
  • 1
  • 7

2 Answers2

0

This error means, that you are trying to access class, that currently doesn't exist.

Try to check the name of class, you accessing

kboskin
  • 422
  • 3
  • 12
0

You can solve it by setting the name attribute to your class like this:

[Activity(Name = "somepackage.custombuttonrenderer")]
public class CustomButtonRenderer: ButtonRenderer
{ }

An explanation is in my answer here: Why is my custom ButtonRenderer not working?

IvanF.
  • 513
  • 10
  • 18