I'm trying to delete html tags from a string using JSoup, but at run time the emulator gives an exception that is: NoClassDefFoundError: org.jsoup.JSoup
here is my code:
String result="<html> hello </html>";
Jsoup.parse(result).text();
can anyone help me?