In my project i have five classes but when i export jar file of project it only include some of classes and not all of the classes which are in the source folder.
how can i fix this?
As Jar does not include all classes i end-up with NoClassDefFoundError.
1)for my project i am using eclipse version 3.6.2,ADT version 20, and latest Android SDK
2)all classes are under SRC folder
Finally I figured it out.
In eclipse when you export the jar file it includes only the classes which don’t have any errors or warnings.So, to generate jar file with all the classes including warnings you need to select generate Jar with warnings.