Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the difference between dexedLibs and libs?

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?

like image 750
fredley Avatar asked May 16 '13 09:05

fredley


1 Answers

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.

like image 137
John Willemse Avatar answered Oct 05 '22 07:10

John Willemse