feat(store): set up a preliminary implementation for newest posts

This commit is contained in:
Harsh Shandilya 2023-08-03 18:22:22 +05:30 committed by GitHub
parent 14007c6e8f
commit 45701f414b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 165 additions and 12 deletions

View file

@ -19,8 +19,13 @@ anvil { generateDaggerFactories.set(true) }
dependencies {
api(projects.database)
api(projects.model)
api(projects.core)
implementation(projects.api)
implementation(libs.dagger)
implementation(libs.javax.inject)
implementation(libs.kotlinx.atomicfu)
implementation(libs.kotlinx.coroutines.core)
implementation(libs.sqldelight.extensions.coroutines)
implementation(libs.store5)
}