From 2f452c7d376a49af10e507b5f5549b5723dbe77b Mon Sep 17 00:00:00 2001 From: Clone Conflict Date: Fri, 14 Jan 2022 17:29:50 +0100 Subject: [PATCH] added reference to downloader implemention --- docs/08_getting_started.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/08_getting_started.md b/docs/08_getting_started.md index e4b6e1e..748863e 100644 --- a/docs/08_getting_started.md +++ b/docs/08_getting_started.md @@ -144,9 +144,9 @@ public Response execute(@Nonnull Request request) throws IOException, ReCaptchaE Here is a simple implementation for the `Downloader`, assumes that you are using `okhttp`. +This have been taken from [here](https://github.com/TeamNewPipe/NewPipeExtractor/blob/dev/extractor/src/test/java/org/schabi/newpipe/downloader/DownloaderTestImpl.java). + ```java -package gh.cloneconf.newpipe_android_example; - import org.schabi.newpipe.extractor.downloader.Downloader; import org.schabi.newpipe.extractor.downloader.Request; import org.schabi.newpipe.extractor.downloader.Response;