- OkHttp适用于Android 5.0+(API级别21+)和Java 8+。
- issues#4597
- java8-support
jdk >= JavaVersion.VERSION_1_8
android.defaultConfig.minSdkVersion >= 21
ext {
latestVersion = '1.0.3-SNAPSHOT'
}
allprojects {
repositories {
...
maven {
url 'https://oss.jfrog.org/artifactory/oss-snapshot-local'
}
...
}
}
ext {
latestVersion = '1.0.2'
}
allprojects {
repositories {
...
jcenter()
...
}
}
java
...
dependencies {
...
implementation "io.github.v7lin:okhttp3:${latestVersion}"
...
}
...
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
...
android
...
android {
...
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
...
}
...
dependencies {
...
// implementation "io.github.v7lin:okhttp3:${latestVersion}"
implementation "io.github.v7lin:okhttp3-android:${latestVersion}"
...
}
...