I'm building an Application which starts a service that uses internal android .jar file located at
/system/framework
The problem is whenever i try to access a class from this .jar file, i get a classDefNotFound exception.
Note: I'm able to compile the project with the stub'd version of the .jar file, but i don't know how to include the internal library in the Application (service) classpath so that i get rid of this exception.
(I'm not using eclipse)