Sebuah Pembungkus Rx untuk Download Manager di Android
String url = "https://upload.wikimedia.org/wikipedia/en/e/ed/Nyan_cat_250px_frame.PNG";
RxDownloader.getInstance(SampleAct.this)
.download(url, "nyancat photo", "image/jpg") // url, filename, and mimeType
.subscribe(path ->{
// Do what you want with downloaded path
}, throwable -> {
// Handle download faile here
});
Anda juga dapat melihat sample
untuk penggunaan lengkap
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
dependencies {
compile 'com.github.esafirm:RxDownloader:1.0.1'
}