expo-file-system downloadProgress not work in android

var downloadResumable=FileSystem.createDownloadResumable(curData.urlData,giftDir+curData.code+‘.json’,{}, downloadProgress => {
var progress = downloadProgress.totalBytesWritten / curData.totalBytes;
console.log(‘totalBytesWritten:----’,downloadProgress.totalBytesWritten);

        if(customProgressView){
            customProgressView.setProcess(progress,true);

        }
      }
      );

callback downloadProgress not work in android,but work normal in ios

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.