I have a project with a couple of modules, some jar dependencies in libs folder and some some other gradle dependencies. I am trying to build a release apk with proguard enabled but i am getting a lot of warnings during the build process for certain dependencies. e.g this:
Warning:org.codehaus.jackson.jaxrs.JacksonJsonProvider: can't find superclass or interface javax.ws.rs.ext.MessageBodyReader
Would someone please refer a guide on how to properly define rules for the dependencies. and do i need to add rules for the modules besides the app module.
Edit:
I have added the following rule to the app build.gradle file:
-keep interface org.codehaus.jackson.** { *; }
-keep class org.codehaus.jackson.** { *; }
but i am still getting the warnings during build process.