i am new to android and i want an application that checks the matching of sentence against a sentence. for that i m using stanford tregex tool and i have included the 4 jar files form the package into the libs of my project. while running i got an error in console that tells Unable to execute dex: Multiple dex files define Ledu/stanford/nlp/graph/Connected Components...i don't know why...what i need to do for this...please explain
TregexPattern objTregexPattern=TregexPattern.compile("hi a am yureka");
Tree objTree2=newLeaf("my name is yureka which is a new word");
TregexMatcher objTregexMatcher=objTregexPattern.matcher(objTree2);
if(objTregexMatcher.find()){
Toast.makeText(this,"Match found", Toast.LENGTH_LONG).show();
}
else{
Toast.makeText(this,"Match not found", Toast.LENGTH_LONG).show();
}