fredley
fredley

Reputation: 33861

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?

Upvotes: 6

Views: 3671

Answers (1)

John Willemse
John Willemse

Reputation: 6698

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.

Upvotes: 7

Related Questions