I'm trying to minimise the APK size. And I'm suspecting bulk of the compiled classes.dex is actually the code from the support libraries which isn't being used. And I want it gone :)
Anyone know of an elegant way to inject Proguard into the build process? Maybe even how to get a list of java classes used in C# world to pass into Proguard? Though I'm willing to manually maintain the configuration of what to keep and what to strip.
I'm thinking the best bet would be to hack the build system a bit to get Proguard into the process. No idea it will work or not.