I\'d like to use proguard on my library, but the file (rules) should be set inside the library. That means I don\'t want to set the rules w(hich belong to the library) explicitl
Ok, since proguard might be eating up your classes, try something like this in your app's proguard-rules.pro file:
app
keepclass my.library.package.name.** { *;}
that should tell proguard to save all classess from my.library.package.name so hopefully they won't be missing anymore.
my.library.package.name