Hi,
I am trying to use retrofit to upload an image from the android device to mysql database and server. Below is the java code that I am using for uploading the image:
private void uploadImage() {
Bitmap fullSizeBitmap = BitmapFactory.decodeFile(pathToFile);
Bitmap...