Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 723 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 723 Bytes

EZDownload

一款轻量级,易扩展的Android文件下载框架 支持智能多线程分块下载(类似迅雷),支持线程池,支持断点续传,支持暂停恢复

Download

Usage

Gradle

android {
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

dependencies {
    compile 'cn.ezandroid:EZDownload:{Latest version}' // Gradle version < 3.0
    // or
    implementation 'cn.ezandroid:EZDownload:{Latest version}' // Gradle version >= 3.0
}