*.jar
files inside the bin/dexedLibs
directory. These files are generated every time you build your application.Usually, multiple dex files error tells you that you are including the same class file from different sources.
Solution
To resolve this, simply do the following:- Open Project's Properties » Java Build Path » Order and Export.
- Uncheck Android Private Libraries on the list
- Clean and re-build your application
After doing the steps above, your project should now build and compile properly.
On my case, since my Eclipse is on auto-build, this is usually generated every time I restarted my IDE.
No comments :
Post a Comment