I have a main project, it has some libs
(like library-x, library-y, library-z) and a library project. In the library project I import the same libraries with the same versions of the main project (for example library-x and library-y).
When I compile the project, in my application will it duplicate my libraries or adt
will take only one library if it is the same project?
Is there any way to use the project's libraries in the library project?
Thank you.