Questions tagged [androidx-lifecycle]

Lifecycle-aware components perform actions in response to a change in the lifecycle status of another component, such as activities and fragments. These components help you produce better-organized, and often lighter-weight code, that is easier to maintain.

Lifecycle-aware components perform actions in response to a change in the lifecycle status of another component, such as activities and fragments. These components help you produce better-organized, and often lighter-weight code, that is easier to maintain. See the reference docs for more information.

4 questions
1
vote
1 answer

Coroutine doens't start?

Based on this post throttleFirst function: fun throttleFirst( skipMs: Long = 700L, scope: CoroutineScope = viewModelScope, action: (T) -> Unit ): (T) -> Unit { var throttleJob: Job? = null return { param: T -> if…
0
votes
1 answer

LazyColumn duplicate display

Duplicate Display Screenshot Firestore Queries Screenshot I am using Jetpack Compose + HiltViewModel + Firestore database When I perform add action somehow the last entry is duplicated on LazyColumn. The data is added correctly to the Firestore…
0
votes
1 answer

Error when adding Facebook Authentication to flutter App

I'm going crazy because I'm trying to solve this from 3 days ago :) any one can please help me. Note: the app is already on google play, now I'm working on version 2 of app. I'm trying to add Facebook Authentication to an existing flutter app, i was…
0
votes
0 answers

lifecycle-process: app crash when importing dependency

I was using lifecycle extensions library for a while, but I notice that when updating from 2.1.0 to 2.2.0 the app crash systematically when opening a draggable view. Since the library has been reworked, and the code I use is now in…
Kikiwa
  • 1,213
  • 2
  • 13
  • 20