Skip to content Skip to sidebar Skip to footer

Multipartentity Image Is Not Upload

I want to upload image using MultipartEntity. I have try below code. I did not get any error but image is not upload. I have enough permission for upload PHP

Solution 1:

You need to give permission in your manifest file for WRITE_EXTERNAL_STORAGE and READ_EXTERNAL_STORAGE:

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

   <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

Post a Comment for "Multipartentity Image Is Not Upload"