I\'ve just refactored an app into a framework library and an application, but now when I try and start the app in the emulator I get the following error stack trace:
remove classes.dex from bin and rebuild project
While this won't be applicable for everyone, I recently had this problem because my project was failing to link with a shared library present on the device. I had forgotten to specify in my manifest that my application <uses-library>
.
Believe it or not, the fix for me was to remove the old version (2.0) of google analytics library from my project, after trying everything for at least 4 hours. Of course, an update of this library could be the solution also. So it could be a dependency jar versioning problem.