I just updated proguard-rules.pro and noticed that ListView is not behaving normally, now ListView items are not appearing.
I added these two lines:
-keep class com.google.android.libraries.** { *; }
-keep class android.support.v7.** { *; }
I am facing this issue only with ListView, RecyclerView works just perfect.
-dontwarn okio.**
-dontwarn retrofit.**
-keep class retrofit.** { *; }
-keepclassmembers,allowobfuscation interface * {
@retrofit.http.** <methods>;
}
-dontwarn com.squareup.okhttp.**
-keepattributes Signature,Annotation,EnclosingMethod,SourceFile,LineNumberTable
-keep class com.google.android.libraries.** { *; }
-keep class android.support.v7.** { *; }