├── .gitignore ├── .idea ├── checkstyle-idea.xml ├── copyright │ ├── aphache2.xml │ └── profiles_settings.xml ├── encodings.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── .travis.yml ├── AndroidManifest.xml ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src ├── main └── java │ └── cn │ └── dreamtobe │ └── filedownloader │ └── OkHttp3Connection.java └── test └── java └── cn └── dreamtobe └── filedownloader └── OkHttp3ConnectionTest.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksgong/filedownloader-okhttp3-connection/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/checkstyle-idea.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksgong/filedownloader-okhttp3-connection/HEAD/.idea/checkstyle-idea.xml -------------------------------------------------------------------------------- /.idea/copyright/aphache2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksgong/filedownloader-okhttp3-connection/HEAD/.idea/copyright/aphache2.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksgong/filedownloader-okhttp3-connection/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksgong/filedownloader-okhttp3-connection/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksgong/filedownloader-okhttp3-connection/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksgong/filedownloader-okhttp3-connection/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksgong/filedownloader-okhttp3-connection/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksgong/filedownloader-okhttp3-connection/HEAD/.travis.yml -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksgong/filedownloader-okhttp3-connection/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksgong/filedownloader-okhttp3-connection/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksgong/filedownloader-okhttp3-connection/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksgong/filedownloader-okhttp3-connection/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksgong/filedownloader-okhttp3-connection/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksgong/filedownloader-okhttp3-connection/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksgong/filedownloader-okhttp3-connection/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksgong/filedownloader-okhttp3-connection/HEAD/gradlew.bat -------------------------------------------------------------------------------- /src/main/java/cn/dreamtobe/filedownloader/OkHttp3Connection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksgong/filedownloader-okhttp3-connection/HEAD/src/main/java/cn/dreamtobe/filedownloader/OkHttp3Connection.java -------------------------------------------------------------------------------- /src/test/java/cn/dreamtobe/filedownloader/OkHttp3ConnectionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jacksgong/filedownloader-okhttp3-connection/HEAD/src/test/java/cn/dreamtobe/filedownloader/OkHttp3ConnectionTest.java --------------------------------------------------------------------------------