I was just wondering, I am designing a library to use with my Android projects. Now I am starting to include things like the apache FTP jar to support some debug file uploads.

I know that not all projects will use all parts of the library (e.g. some project will not have an FTP upload at all, but wants to use the UI tools from the library).

Now I got three questions:

  1. Does Proguard remove unsused sources (own code), like e.g. my UI tool classes, if they are never references from the main project - meaning not used in the application.

  2. Does Proguard remove external libraries (e.g. apache ftp jar) if never used. If not, I may include the source, if option 1 applies.

  3. How about resource files (not really Proguards job, more IntelliJ or Eclipse) - Example: I write a google map extension using default markers, stored in the library project. If I do not need the maps anyway, do the files get included in each android project - and is there an easy way to prevent that.

Some more backround: I try to keep all my library stuff in one project as long as possible. I don't know a good point to split the library yet, so I don't want to overkill to create seperate libs for everything (did that in the past, and most of the time it was way to much modularization)...

Thanks for any insights, Chris

link|improve this question

64% accept rate
1  
"Desinging" sounds like an interesting process :-) – Stephen C Jul 25 '11 at 9:44
Damn german... We got a lot of -ing and normally no -ign - corrected for orthograpic enthusiasts :-) – Christian Jul 25 '11 at 10:09
feedback

1 Answer

up vote 2 down vote accepted

Does Proguard remove unsused sources

It tries to, when configured properly.

Does Proguard remove external libraries (e.g. apache ftp jar) if never used.

It tries to, when configured properly.

How about resource files (not really Proguards job, more IntelliJ or Eclipse) - Example: I write a google map extension using default markers, stored in the library project. If I do not need the maps anyway, do the files get included in each android project - and is there an easy way to prevent that.

No.

link|improve this answer
So there is no difference between including source vs. jars in my library. Most jars provide source code too, but if I understand your answer correctly, as long as I figure out how to use Proguard correctly, there is no benefit in e.g. including the apache commons source vs. the jars. – Christian Jul 25 '11 at 11:57
@Christian: Correct. Proguard doesn't work off the source in any case AFAIK -- it works off of .class files. – CommonsWare Jul 25 '11 at 12:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.