I got a question about project library and size of an Android application.
Let me explain:
I have a library project, let's call it A that is used in 3 library projects (B, C and D).
In my Android Application, I have 3 library dependencies (1 for B, 1 for C and 1 for D).
So in fact it looks like this:
Then my question is:
Is the A library project 3 times in my application ? Or just used 1 time for every block that use it (B, C, D, even My Application).
In other words, if the size of A is 1MB, does My application is 1MB bigger or 3MB bigger ? (not exactly but the point is there)