Improve: Use IO Thread to show notification (Inconsistent Notification)

Improve: List Animation Disabled by default
Add: Coroutine and Lifecycle Dependencies
This commit is contained in:
LooKeR
2021-11-12 20:54:18 +05:30
parent 06f6d2b56c
commit bc44c9de15
3 changed files with 55 additions and 49 deletions

View File

@ -129,12 +129,16 @@ dependencies {
// Backend
implementation 'io.coil-kt:coil:1.4.0'
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'io.reactivex.rxjava3:rxjava:3.1.1'
implementation 'io.reactivex.rxjava3:rxandroid:3.0.0'
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.0'
implementation 'com.squareup.okhttp3:okhttp:4.9.2'
implementation 'com.github.topjohnwu.libsu:core:3.1.2'
implementation 'androidx.room:room-runtime:2.3.0'
implementation 'io.reactivex.rxjava3:rxjava:3.1.1'
implementation 'com.squareup.okhttp3:okhttp:4.9.2'
implementation 'io.reactivex.rxjava3:rxandroid:3.0.0'
implementation 'com.github.topjohnwu.libsu:core:3.1.2'
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.0'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.4.0'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2'
implementation 'androidx.room:room-ktx:2.3.0'
kapt 'androidx.room:room-compiler:2.3.0'
}