what does Method getResources not annotated with request type (e.g., GET, POST) mean?

后端 未结 3 1275
鱼传尺愫
鱼传尺愫 2021-01-19 06:02
private interface ResourcesApi {
        @POST(\"/synchronize\")
        void getResources(@Body Map> map,
                           


        
3条回答
  •  无人共我
    2021-01-19 06:21

    Agree with @chad's answer, add below lines if still getting crash.

    -keepattributes Signature
    -keep class sun.misc.Unsafe { *; }
    

提交回复
热议问题