I want to use a regular Java library in an Android project. That library's .jar includes resources (text files) that are used by the library internally, i.e. it accesses these resources via a relative path within the .jar.
However, if I run the application on an Android device, I get an IOException telling me that the respective resource was not found.
Is it possible to have the library access its resources when run on the Android Dalvik VM? If so, what would I have to specify in my project?