Alexander
Alexander
Vote for this. Today we have to sort data (by translatable fields) on the client side.
I faced with same problem. This library does not fit new displays. This library version - 1.54" Black/White/Red GDEW0154Z04 e-paper display driver Current Eink fw version GDEH0154Z90. Protocol is changed/...
It because of tintList. Check http://stackoverflow.com/questions/41136956/how-to-show-drawable-in-navigationview. If you do not need tintList just use navigationView.setItemIconTintList(null) Or copy source of TextDrawable and override method @Override public void setTintList(ColorStateList tint) { //super.setTintList(tint);...
The same problem. My solution: ` viewPager2.addOnAttachStateChangeListener(object : View.OnAttachStateChangeListener { override fun onViewDetachedFromWindow(v: View) { viewPager2.removeOnAttachStateChangeListener(this) tabLayoutMediator.detach() viewPager2.setup.unregisterOnPageChangeCallback(onPageChangeCallback) viewPager2..adapter = null } }) ` FragmentStateAdapter is still leaking because it...
Same problem. Looks like [this](https://github.com/icerockdev/moko-resources/issues/535). This solution helps for me/ ``` kotlin { jvm() sourceSets { val commonMain by getting // jvmMain needs to be set to explicity dependsOn(commonMain) even...