Question

I'm moving from Eclipse to Android Studio, and I'm importing my project.

I'm at the step where it's enquiring about libs in my old project. It has two sections, dexedLibs and Libs. Everything I had in my old project appears in dexedLibs, but a few also appear in libs. What is the difference between these two things? Should I remove the duplicate entries in libs?

Was it helpful?

Solution

The dexedLibs contains prebuild libraries of external libraries. This was introduced with ADT21 to enable faster building of projects. Before that, all external libraries were build every time you ran the project, but now they are built once and re-used. Duplicate entries in both folders should be identical and you can keep either of those.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top