rn-fetch-blob
rn-fetch-blob copied to clipboard
Android getColumnIndex issue
- React Native version: 0.64.0
- rn-fetch-blob version: 0.12.0
My application is failed to build for android because of an issue in java code:
RNFetchBlobReq.java:741: Error: Value must be ≥ 0 [Range]
int statusCode = c.getInt(c.getColumnIndex(DownloadManager.COLUMN_STATUS));
Please help to recheck, it should be getColumnIndexOrThrow
Thanks
Have same issue when build apk, changed it directly in node_modules is a temporary solution and it works:
@imbarwinata thank you for your referred link! I had to update my patch-package package so that I could create a patch for rn-fetch-blob for RN 62.0. Cheers!
Have same issue when build apk, changed it directly in node_modules is a temporary solution and it works:
good, solved my problems using THIS. TQ.