Clean dependencies

This commit is contained in:
S1m 2021-11-24 22:14:48 +01:00
parent aa25b80866
commit 630b207cc2
1 changed files with 13 additions and 12 deletions

View File

@ -50,19 +50,20 @@ android {
} }
dependencies { dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" ext.coreVersion = "1.6.0"
implementation 'androidx.core:core-ktx:1.6.0'
implementation 'androidx.appcompat:appcompat:1.3.1' implementation("org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version")
implementation 'com.google.android.material:material:1.4.0' implementation("androidx.core:core:$coreVersion")
implementation 'androidx.constraintlayout:constraintlayout:2.1.1' implementation("androidx.core:core-ktx:$coreVersion")
implementation 'androidx.navigation:navigation-ui-ktx:2.3.5' implementation("androidx.appcompat:appcompat:1.3.1")
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.5' implementation("com.google.android.material:material:1.4.0")
implementation("androidx.constraintlayout:constraintlayout:2.1.2")
implementation("androidx.coordinatorlayout:coordinatorlayout:1.1.0")
implementation(platform("com.squareup.okhttp3:okhttp-bom:4.9.1")) implementation(platform("com.squareup.okhttp3:okhttp-bom:4.9.1"))
implementation("com.squareup.okhttp3:okhttp") implementation("com.squareup.okhttp3:okhttp")
implementation("com.squareup.okhttp3:logging-interceptor")
implementation("com.squareup.okhttp3:okhttp-sse") implementation("com.squareup.okhttp3:okhttp-sse")
implementation 'com.github.nextcloud:Android-SingleSignOn:0.6.0' implementation("com.github.nextcloud:Android-SingleSignOn:0.6.0")
implementation "com.squareup.retrofit2:retrofit:2.9.0" implementation("com.squareup.retrofit2:retrofit:2.9.0")
implementation "com.squareup.retrofit2:converter-gson:2.9.0" implementation("io.reactivex.rxjava2:rxjava:2.2.21")
implementation "com.squareup.retrofit2:adapter-rxjava2:2.9.0" implementation("com.google.code.gson:gson:2.8.9")
} }