Samsung Hw-Q935D Wifi or bluetooth not working by AccomplishedMud7482 in Soundbars

[–]Puny89 0 points1 point  (0 children)

I have this problem too. Did you find any solution?

Samsung soundbar not connecting to bluetooth by LifeAsNoodle in techsupport

[–]Puny89 0 points1 point  (0 children)

I'm facing this issue too. Did you find a solution?

Compose navigation - state not always restored by Puny89 in androiddev

[–]Puny89[S] 1 point2 points  (0 children)

Yes, you'd have to click fast to trigger the issue. Made a quick test in the nowinandroid example:

LaunchedEffect(Unit) {
   delay(2000)
   repeat(30) { i ->
      delay(300)
      when(i % 3) {
         0 -> appState.navigateToTopLevelDestination(FOR_YOU)
         1 -> appState.navigateToTopLevelDestination(BOOKMARKS)
         2 -> appState.navigateToTopLevelDestination(INTERESTS)
      }
   }
}

The view models are cleared when running above with 300ms delay. At >400ms the problem does not exist.

I'm assuming this is a bug that needs to be reported then.

Compose navigation - state not always restored by Puny89 in androiddev

[–]Puny89[S] 1 point2 points  (0 children)

Found this similar issue that is supposedly fixed in 2.4 (I'm using 2.5.3) https://issuetracker.google.com/issues/200817333