I am succesfully using proguard for my Android apps.
However, with one app I am having trouble.
This app uses a java library that has a .xml fi
First of all, It turned out that using ant and my build.xml script didn't process the .xml resource file at all. You'll need to manually add a copy action to the build.xml for the resource files to be copied to the output dir.
Still, having solved that, proguard messed up my work. Solution was:
-keeppackagenames the.package.where.the.file.is.kept
This made sure that the .xml file could be found by calling the Library.class.getResource.