Fixed that OkHttp dropped Android 4 support with version 3.13

This commit is contained in:
dankito 2020-10-10 01:28:02 +02:00
parent 768d17743a
commit e69b4a9141
1 changed files with 5 additions and 0 deletions

View File

@ -119,6 +119,11 @@ dependencies {
exclude group: 'com.android.support', module: 'design' exclude group: 'com.android.support', module: 'design'
} }
// Android 4 support has been dropped with version 3.13.0
implementation('com.squareup.okhttp3:okhttp') {
version { strictly '3.12.12' }
}
implementation "org.slf4j:slf4j-android:$slf4jVersion" implementation "org.slf4j:slf4j-android:$slf4jVersion"