I want to resumable a file download from the Azure server.
I've tried with many third-party libraries. i.e PRDownloader, Fetch but Azure file is restart download while network issue OR any.
Referred c# code
var blobRequestOptions = new Microsoft.WindowsAzure.Storage.Blob.BlobRequestOptions
{
RetryPolicy = new Microsoft.WindowsAzure.Storage.RetryPolicies.ExponentialRetry(TimeSpan.FromSeconds(5), 3),
MaximumExecutionTime = TimeSpan.FromMinutes(60),
ServerTimeout = TimeSpan.FromMinutes(60),
StoreBlobContentMD5 = true
};
But not getting how it'll work in android. Can any one help to short it out. Help will be appreciate.