Multipart request with Retrofit @PartMap Error in Kotlin (Android)

前端 未结 2 1318
粉色の甜心
粉色の甜心 2021-02-01 19:49

If I am using this code in Java then its working fine. When I convert that code in kotlin then I got Error.

Logcat

08-20 23:46:51.003 3782-3782/

2条回答
  •  -上瘾入骨i
    2021-02-01 20:29

    Add @JvmSuppressWildcards before RequestBody

    fun updateCustomerDetail(@PartMap map: Map): Call
    

提交回复
热议问题