From 2c1b13620fdeb7578fae548ac82584dab73dc46b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Thu, 29 Oct 2015 16:11:08 +0100 Subject: [PATCH] Disable DownloadManager usage for stable Since it's unstable and introduces regressions. See #445 and #459, for example. --- F-Droid/src/org/fdroid/fdroid/net/DownloaderFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/F-Droid/src/org/fdroid/fdroid/net/DownloaderFactory.java b/F-Droid/src/org/fdroid/fdroid/net/DownloaderFactory.java index 39af3bd4c..d1ff543ba 100644 --- a/F-Droid/src/org/fdroid/fdroid/net/DownloaderFactory.java +++ b/F-Droid/src/org/fdroid/fdroid/net/DownloaderFactory.java @@ -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); }