I have a question about the project library and the size of the Android application.
Let me explain:
I have a library project, let's call it A , which is used in 3 library projects ( B , C and D ).
In my Android app, I have 3 library dependencies (1 for B, 1 for C and 1 for D).
So actually it looks like

Then my question is:
Is the library project 3 times in my application? Or just used 1 time for each block using it (B, C, D, even My application).
In other words, if size A is 1 MB, is my application 1 MB larger or 3 MB larger? (not exactly, but the point is there)
Thanks for any help!