Skip to content
Snippets Groups Projects
Commit 471b02ce authored by Daniel Gultsch's avatar Daniel Gultsch
Browse files

explicity set okhttp to 3.12.x

parent 4e0f05f0
Branches
Tags
No related merge requests found
......@@ -37,7 +37,7 @@ dependencies {
exclude group: 'com.google.firebase', module: 'firebase-measurement-connector'
}
implementation 'org.sufficientlysecure:openpgp-api:10.0'
implementation ('com.theartofdev.edmodo:android-image-cropper:2.7.+') {
implementation('com.theartofdev.edmodo:android-image-cropper:2.7.+') {
exclude group: 'com.android.support', module: 'appcompat-v7'
exclude group: 'com.android.support', module: 'exifinterface'
}
......@@ -66,8 +66,12 @@ dependencies {
implementation 'org.conscrypt:conscrypt-android:2.2.1'
implementation 'me.drakeet.support:toastcompat:1.1.0'
implementation "com.leinardi.android:speed-dial:2.0.1"
implementation 'com.squareup.retrofit2:retrofit:2.7.1'
implementation 'com.squareup.retrofit2:converter-gson:2.7.1'
implementation("com.squareup.retrofit2:retrofit:2.7.1") {
exclude group: "com.squareup.okhttp3", "module": "okhttp"
}
implementation("com.squareup.retrofit2:converter-gson:2.7.1") {
exclude group: "com.squareup.okhttp3", "module": "okhttp"
}
implementation 'com.squareup.okhttp3:okhttp:3.12.7'
implementation 'com.google.guava:guava:27.1-android'
quicksyImplementation 'io.michaelrocks:libphonenumber-android:8.11.1'
......@@ -199,7 +203,6 @@ android {
}
if (new File("signing.properties").exists()) {
Properties props = new Properties()
props.load(new FileInputStream(file("signing.properties")))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment