java.lang.NoClassDefFoundError retrofit2.Utils

后端 未结 11 1501
梦毁少年i
梦毁少年i 2020-12-30 10:40

I\'m using Retrofit to handle the Serverside Data from Mobile. After Implementing retrofit, I am Getting the below Exception.

What am I doing wrong?

11条回答
  •  失恋的感觉
    2020-12-30 11:28

    Did you add the following proguard rules?

    -dontwarn retrofit2.**
    -keep class retrofit2.** { *; }
    -keepattributes Signature
    -keepattributes Exceptions
    

    Documentation: http://square.github.io/retrofit/

提交回复
热议问题