Fairly new to android development. I am trying to use retrofit to send a post request. In my retrofit logs, I am seeing
Content-Type: text/plain; charset=utf
In the class where you define your service, modify the related method to follow the pattern below:
@FormUrlEncoded @POST/GET/PUT/DELETE("/your_endpoint") Object yourMethodName(@Field("your_field") String yourField,...);