Fix somes loading bugs. introduce Glide.
This commit is contained in:
parent
142957d490
commit
6aca43bc5f
35 changed files with 219 additions and 565 deletions
|
|
@ -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()
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue