private interface ResourcesApi {
@POST(\"/synchronize\")
void getResources(@Body Map> map,
In addition to Jake's answer, this is what I had to add to my proguard
file to get it to work correctly:
-keep class com.google.gson.** { *; }
-keep class com.google.inject.** { *; }
-keep class org.apache.http.** { *; }
-keep class org.apache.james.mime4j.** { *; }
-keep class javax.inject.** { *; }
-keep class retrofit.** { *; }