The event is working on Android and I get multiple progress events as the file uploads, on iOS the only event that fires is once the file is uploaded.
version 2.0.4 (tested back to v2.0.0) and tested on iOS 26 simulator & device
{
bytes: 21358080
contentLength: 21358080
lengthComputable: true
type: "upload"
url: "https:..."
}
I am using the standard request, not changing the header type etc... chunkedMode: false and progress: true
{
chunkedMode: false,
headers: {
Authorization: `Bearer ${token}`,
},
path: request.data,
progress: true,
url: `${HOST}${request.uploadURL}`,
}
The event is working on Android and I get multiple progress events as the file uploads, on iOS the only event that fires is once the file is uploaded.
version 2.0.4 (tested back to v2.0.0) and tested on iOS 26 simulator & device
I am using the standard request, not changing the header type etc... chunkedMode: false and progress: true