hank121314
hank121314
const filepath = 'content://com.android.providers.media.documents/document/image%3A209152'; filepath should begin with file,like "file://". UploadFiles doesn't support the content in android currently. You can use RNFS to get the filepath
Stopdownload should work on android.
Not only replaced content:// to file:// . You should use RNFS to get the full file path like "file:///mnt/sdcard/FileName.jpeg".
It depends on the location of your file. If your file is stored in sdcard use RNFS. ExternalStorageDirectoryPath ``` const filepath = RNFS. ExternalStorageDirectoryPath + "FileName.jpeg" ```
> > It depends on the location of your file. If your file is stored in sdcard use RNFS. ExternalStorageDirectoryPath > > ``` > > const filepath = RNFS. ExternalStorageDirectoryPath...
Hi @SachinVin! Thanks for the review! At first, this RP will resolve the sdcard issue only when targetSdk is lower than 30. But now, I think this PR should remove...
> No, WRITE_EXTERNAL_STORAGE is still required for Citra's data folder located at /sdcard/citra-emu, which contains the emulated SD card that contains all installed CIA content. I already removed permissions as...
Hi @SachinVin! I have made some changes to this PR. Could you help me to review it? Thanks!
clang-format on my locale might break some codes. I will fix it later!
Hi @xperia64! Thanks for the review once again! 😃 I also strongly agree with do not extract/construct content URI manually. But, I have also try to use a top-level `DocuemntFile`...