Skip to content
Snippets Groups Projects
Commit 27e6d813 authored by Taras's avatar Taras
Browse files

Move retrofit to core

parent 9309658e
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,6 @@ dependencies {
implementation project(path: ':core')
implementation project(path: ':auth')
//ExoPlayer
implementation 'com.google.android.exoplayer:exoplayer:2.18.7'
......@@ -85,19 +84,10 @@ dependencies {
//Emoji
implementation "com.vanniktech:emoji-google:0.16.0"
//Retrofit2
def retrofit_version = '2.9.0'
implementation "com.squareup.retrofit2:retrofit:$retrofit_version"
implementation "com.squareup.retrofit2:converter-gson:$retrofit_version"
//Gson
implementation 'com.google.code.gson:gson:2.10'
//QR
implementation 'com.google.zxing:core:3.5.1'
implementation 'com.github.yuriy-budiyev:code-scanner:2.3.2'
//Webp animations
implementation 'com.github.penfeizhou.android.animation:glide-plugin:2.24.0'
......
......@@ -9,10 +9,10 @@ import androidx.annotation.WorkerThread
import androidx.core.content.pm.ShortcutInfoCompat
import androidx.core.graphics.drawable.IconCompat
import org.futo.circles.MainActivity
import org.futo.circles.core.glide.GlideApp
import org.futo.circles.core.glide.GlideShortcutUtils.adaptiveShortcutDrawable
import org.futo.circles.core.glide.GlideShortcutUtils.shortcutDrawable
import org.futo.circles.extensions.dpToPx
import org.futo.circles.glide.GlideApp
import org.futo.circles.glide.GlideShortcutUtils.adaptiveShortcutDrawable
import org.futo.circles.glide.GlideShortcutUtils.shortcutDrawable
import org.matrix.android.sdk.api.session.room.model.RoomSummary
import org.matrix.android.sdk.api.util.toMatrixItem
......
......@@ -69,18 +69,21 @@ dependencies {
//Matrix
api 'org.matrix.android:matrix-sdk-android:1.5.30.6'
//Glide
def glide_version = '4.15.1'
implementation "com.github.bumptech.glide:glide:$glide_version"
kapt "com.github.bumptech.glide:compiler:$glide_version"
//Retrofit2
def retrofit_version = '2.9.0'
implementation "com.squareup.retrofit2:retrofit:$retrofit_version"
implementation "com.squareup.retrofit2:converter-gson:$retrofit_version"
api "com.squareup.retrofit2:retrofit:$retrofit_version"
api "com.squareup.retrofit2:converter-gson:$retrofit_version"
//Gson
api 'com.google.code.gson:gson:2.10'
//TextDrawable
implementation 'com.alvinhkh:TextDrawable:c1c2b5b'
api 'com.alvinhkh:TextDrawable:c1c2b5b'
//Glide
def glide_version = '4.15.1'
implementation "com.github.bumptech.glide:glide:$glide_version"
kapt "com.github.bumptech.glide:compiler:$glide_version"
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment