Skip to content

Commit

Permalink
-Compose 1.7.0 Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
KhubaibKhan4 committed Oct 16, 2024
1 parent 6857616 commit d269a09
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 14 deletions.
1 change: 0 additions & 1 deletion composeApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ kotlin {
implementation(libs.gitlive.firebase.firestore)
implementation(libs.gitlive.firebase.database)
implementation(libs.gitlive.firebase.analytics)
implementation(libs.gitlive.firebase.messaging)
implementation(libs.cupertino.adaptive)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package org.company.app.data.repository

import dev.gitlive.firebase.Firebase
import dev.gitlive.firebase.database.FirebaseDatabase
import dev.gitlive.firebase.messaging.messaging
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.flow
import org.company.app.data.remote.YoutubeClientApi
Expand Down Expand Up @@ -47,16 +46,6 @@ class YouTubeServiceImpl(
println("FetchUiData Error fetching UI data: ${e.message}")
}
}
suspend fun registerMessagingToken(): String{
return Firebase.messaging.getToken()
}

fun subscribeToTopic(topic: String) {
return Firebase.messaging.subscribeToTopic(topic)
}
fun unSubscribeToTopic(topic: String){
return Firebase.messaging.unsubscribeFromTopic(topic)
}

fun fetchLayoutInformation(): Flow<LayoutInformation?> = flow {
fetchUiData().collect { uiData ->
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ compose = "1.6.11"
kotlinxCoroutinesSwing = "1.8.1"
libres = "1.2.2"
androidx-appcompat = "1.7.0"
androidx-activityCompose = "1.9.2"
compose-uitooling = "1.7.3"
androidx-activityCompose = "1.9.3"
compose-uitooling = "1.7.4"
lifecycleViewmodelCompose = "2.8.0"
media3Ui = "1.4.1"
media3ExoplayerDash = "1.4.1"
Expand Down

0 comments on commit d269a09

Please sign in to comment.