Move Bob around.

This commit is contained in:
Thomas Andres Gomez 2021-05-08 15:36:08 +02:00
parent 903d1973c2
commit b07bfd45d3
5 changed files with 5 additions and 5 deletions

View file

@ -3,7 +3,7 @@ package com.pixelized.biblib
import android.app.Application import android.app.Application
import com.google.gson.Gson import com.google.gson.Gson
import com.google.gson.GsonBuilder import com.google.gson.GsonBuilder
import com.pixelized.biblib.injection.Bob import com.pixelized.biblib.utils.injection.Bob
import com.pixelized.biblib.network.client.BibLibClient import com.pixelized.biblib.network.client.BibLibClient
import com.pixelized.biblib.network.client.IBibLibClient import com.pixelized.biblib.network.client.IBibLibClient
import com.pixelized.biblib.repository.credential.CredentialRepository import com.pixelized.biblib.repository.credential.CredentialRepository

View file

@ -1,7 +1,7 @@
package com.pixelized.biblib.network.client package com.pixelized.biblib.network.client
import com.google.gson.Gson import com.google.gson.Gson
import com.pixelized.biblib.injection.inject import com.pixelized.biblib.utils.injection.inject
import com.pixelized.biblib.network.client.IBibLibClient.Companion.BASE_URL import com.pixelized.biblib.network.client.IBibLibClient.Companion.BASE_URL
import okhttp3.OkHttpClient import okhttp3.OkHttpClient
import retrofit2.Retrofit import retrofit2.Retrofit

View file

@ -14,7 +14,7 @@ import com.google.android.gms.auth.api.signin.GoogleSignIn
import com.google.android.gms.auth.api.signin.GoogleSignInAccount import com.google.android.gms.auth.api.signin.GoogleSignInAccount
import com.google.android.gms.common.api.ApiException import com.google.android.gms.common.api.ApiException
import com.pixelized.biblib.data.network.query.AuthLoginQuery import com.pixelized.biblib.data.network.query.AuthLoginQuery
import com.pixelized.biblib.injection.inject import com.pixelized.biblib.utils.injection.inject
import com.pixelized.biblib.network.client.IBibLibClient import com.pixelized.biblib.network.client.IBibLibClient
import com.pixelized.biblib.repository.credential.ICredentialRepository import com.pixelized.biblib.repository.credential.ICredentialRepository
import com.pixelized.biblib.repository.googlesignin.IGoogleSingInRepository import com.pixelized.biblib.repository.googlesignin.IGoogleSingInRepository

View file

@ -5,7 +5,7 @@ import androidx.compose.runtime.mutableStateOf
import androidx.compose.ui.graphics.asImageBitmap import androidx.compose.ui.graphics.asImageBitmap
import androidx.compose.ui.graphics.painter.BitmapPainter import androidx.compose.ui.graphics.painter.BitmapPainter
import androidx.compose.ui.graphics.painter.Painter import androidx.compose.ui.graphics.painter.Painter
import com.pixelized.biblib.injection.get import com.pixelized.biblib.utils.injection.get
import com.pixelized.biblib.utils.BitmapCache import com.pixelized.biblib.utils.BitmapCache
import java.net.URL import java.net.URL

View file

@ -1,4 +1,4 @@
package com.pixelized.biblib.injection package com.pixelized.biblib.utils.injection
import com.pixelized.biblib.utils.exception.InjectionException import com.pixelized.biblib.utils.exception.InjectionException
import kotlin.reflect.KClass import kotlin.reflect.KClass