Fix somes loading bugs. introduce Glide.

This commit is contained in:
Thomas Andres Gomez 2022-07-04 16:51:17 +02:00
parent 142957d490
commit 6aca43bc5f
35 changed files with 219 additions and 565 deletions

View file

@ -1,7 +1,17 @@
package com.pixelized.biblib
import android.app.Application
import android.os.StrictMode
import dagger.hilt.android.HiltAndroidApp
@HiltAndroidApp
class BibLibApplication : Application()
class BibLibApplication : Application() {
override fun onCreate() {
super.onCreate()
if (BuildConfig.DEBUG) {
StrictMode.enableDefaults()
}
}
}