This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2019-06-05 21:42:09.205 14012-14046/? E/AndroidRuntime: at com.airbnb.mvrx.benchmark.RegularStateStore.flushQueues(RegularStateStore.kt:75) | |
at com.airbnb.mvrx.benchmark.RegularStateStore.flushQueues(RegularStateStore.kt:75) | |
at com.airbnb.mvrx.benchmark.RegularStateStore.flushQueues(RegularStateStore.kt:75) | |
at com.airbnb.mvrx.benchmark.RegularStateStore.flushQueues(RegularStateStore.kt:75) | |
at com.airbnb.mvrx.benchmark.RegularStateStore.flushQueues(RegularStateStore.kt:75) | |
at com.airbnb.mvrx.benchmark.RegularStateStore.flushQueues(RegularStateStore.kt:75) | |
at com.airbnb.mvrx.benchmark.RegularStateStore.flushQueues(RegularStateStore.kt:75) | |
at com.airbnb.mvrx.benchmark.RegularStateStore.flushQueues(RegularStateStore.kt:75) | |
at com.airbnb.mvrx.benchmark.RegularStateStore.flushQueues(RegularStateStore.kt:75) | |
at com.airbnb.mvrx.benchmark.RegularStateStore.flushQueues(RegularStateStore.kt:75) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected suspend fun withStateSuspend(block: suspend (state: S) -> Unit ) { | |
withState { state -> | |
viewModelScope.launch { | |
block(state) | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
java.lang.IllegalArgumentException: Tmp detached view should be removed from RecyclerView before it can be recycled: EpoxyViewHolder{epoxyModel=InfoTextModel_{text=This list seems to be empty}InfoTextModel_{id=-6420196332876934318, viewType=2131558481, shown=true, addedToAdapter=false}, view=android.widget.FrameLayout{58c1263 V.E...... ......ID 0,961-1080,1308}, super=ViewHolder{d46e67f position=5 id=-6420196332876934318, oldPos=-1, pLpos:-1 removed tmpDetached no parent}} com.airbnb.epoxy.EpoxyRecyclerView{fac866f VFED..... ........ 0,852-1080,2160 #7f0a010f app:id/rvMovieDetails}, adapter:com.airbnb.epoxy.EpoxyControllerAdapter@2a8435e, layout:androidx.recyclerview.widget.GridLayoutManager@edf833f, context:com.kshitijchauhan.haroldadmin.moviedb.ui.main.MainActivity@667af76 | |
at androidx.recyclerview.widget.RecyclerView$Recycler.recycleViewHolderInternal(RecyclerView.java:6165) | |
at androidx.recyclerview.widget.RecyclerView.removeAnimatingView(RecyclerView.java:1451) | |
at androidx.recyclerv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data class LoadingTask(val tag: String, val lifecycleOwner: LifecycleOwner) | |
data class ProgressBarNotification( | |
val visible: Boolean | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ScrollAwareFABBehavior | |
extends AppBarLayout.ScrollingViewBehavior { | |
public ScrollAwareFABBehavior(Context context, AttributeSet attrs) { | |
super(context, attrs); | |
} | |
@Override | |
public boolean layoutDependsOn(CoordinatorLayout parent, | |
View child, View dependency) { | |
return super.layoutDependsOn(parent, child, dependency) || |