Disable DownloadManager usage for stable
Since it's unstable and introduces regressions. See #445 and #459, for example.
This commit is contained in:
parent
6c8e726aad
commit
2c1b13620f
@ -64,7 +64,7 @@ public class DownloaderFactory {
|
||||
|
||||
public static AsyncDownloader createAsync(Context context, URL url, File destFile, String title, String id, AsyncDownloader.Listener listener)
|
||||
throws IOException {
|
||||
if (canUseDownloadManager(context, url)) {
|
||||
if (false && canUseDownloadManager(context, url)) {
|
||||
Utils.debugLog(TAG, "Using AsyncDownloaderFromAndroid");
|
||||
return new AsyncDownloaderFromAndroid(context, listener, title, id, url.toString(), destFile);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user