Search code examples
androidretrofit2

Retrofit 2 returns null in release APK when minifyenable but ok in debug APK


Getting null response but code 200 with Release APK when minify enable, when minify false then its ok.

enter image description here

But getting expected response with debug APK when minify enable.


Solution

  • Problem solved :)

    No issue with proguard-rules no need to add anything extra.

    Needed to add SerializedName annotation if minifyEnabled even if variable name same as key.

    That was the only Model which i had created manually :P

    Which works fine in Debug but not after Signed in. :)