chore: update to AGP 8.3.0 (#567)

This commit is contained in:
Diego Beraldin 2024-03-04 23:24:08 +01:00 committed by GitHub
parent dea1566a44
commit 3d40e9005c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 1 additions and 4 deletions

View File

@ -4,7 +4,7 @@ androidx_activity = "1.8.2"
androidx_crypto = "1.0.0"
androidx_media3 = "1.2.0"
androidx_splashscreen = "1.0.1"
android_gradle = "8.2.2"
android_gradle = "8.3.0"
coil = "2.6.0"
compose = "1.6.0"
compose_compiler = "1.5.8"

View File

@ -23,7 +23,6 @@ val moddedContentsModule = module {
identityRepository = get(),
postRepository = get(),
hapticFeedback = get(),
userRepository = get(),
imagePreloadManager = get(),
notificationCenter = get(),
)

View File

@ -13,7 +13,6 @@ import com.github.diegoberaldin.raccoonforlemmy.domain.lemmy.data.PostModel
import com.github.diegoberaldin.raccoonforlemmy.domain.lemmy.data.SortType
import com.github.diegoberaldin.raccoonforlemmy.domain.lemmy.data.imageUrl
import com.github.diegoberaldin.raccoonforlemmy.domain.lemmy.repository.PostRepository
import com.github.diegoberaldin.raccoonforlemmy.domain.lemmy.repository.UserRepository
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.IO
import kotlinx.coroutines.flow.launchIn
@ -25,7 +24,6 @@ class ModdedPostsViewModel(
private val settingsRepository: SettingsRepository,
private val identityRepository: IdentityRepository,
private val postRepository: PostRepository,
private val userRepository: UserRepository,
private val imagePreloadManager: ImagePreloadManager,
private val hapticFeedback: HapticFeedback,
private val notificationCenter: NotificationCenter,