Sorun proguard dosyasındaymış bazı keep class komutları eklemek gerekiyormuş.Buradaki sorun volleyden değil volleyin çektiği json'ı gsona çevirirken alınıyor. Uygulama dotfuscate ettiği için class isimleri değişiyor ve serialize edemiyordu. Aşağıdaki gibi GSon için proguard-rules.pro dosyasına ek olarak bunları eklemek ve buradaki keep ettiğimiz classların property'lerini serializable olarak işaretlemek gerekiyor (Örneğin field başına @SerializedName("Fieldname") yazarak). Debug modda dotfuscate etmediği için bu sorun oluşmuyor.
##---------------Begin: proguard configuration for Gson ----------
# Gson uses generic type information stored in a class file when working with fields. Proguard
# removes such information by default, so configure it to keep all of it.
-keepattributes Signature
# For using GSON @Expose annotation
-keepattributes *Annotation*
# Gson specific classes
-dontwarn sun.misc.**
#-keep class com.google.gson.stream.** { *; }
# Application classes that will be serialized/deserialized over Gson
-keep class com.google.gson.examples.android.model.** { *; }
# Prevent proguard from stripping interface information from TypeAdapterFactory,
# JsonSerializer, JsonDeserializer instances (so they can be used in @JsonAdapter)
-keep class * implements com.google.gson.TypeAdapterFactory
-keep class * implements com.google.gson.JsonSerializer
-keep class * implements com.google.gson.JsonDeserializer
# Application classes that will be serialized/deserialized over Gson
-keep public class com.alce.testapp.myTestClass
##---------------End: proguard configuration for Gson ----------
Umarım bununla karşılaşan olursa işine yarar.