I need to prevent Proguard from obfuscating any classes from the package com.foo.*.
com.foo.*
I have tried:
-keep com.foo.** { ;
Try to use the following:
-keep class com.foo.** { public protected private *; }