I\'m using ProGuard with my Android application and I\'m running getting the warnings below in my build log. I\'ve added the appropriate \'-keep public class com.foo.OtherCl
You can avoid it by explicitly mentioning the method in the configuration:
-keep class com.foo.OtherClass { com.foo.OtherClass getInstance(); }
Alternatively, you can suppress notes on a class:
-dontnote com.foo.MyClass
You suppress all messages of type Note by adding the following line:
-dontnote **