Pavel Krylov

Results 5 comments of Pavel Krylov

To fix it you need just change `CustomizationOptionsBundle.getButtonBackgroundDrawable()` from `public Drawable getButtonBackgroundDrawable() { ` ` return buttonBackgroundDrawable;` ` }` to `public Drawable getButtonBackgroundDrawable() {` ` return buttonBackgroundDrawable.getConstantState().newDrawable();` ` }`

Easy mvp use loaders to save presenters across configuration chages. But if activity had destroyed, loader had destroyed too, and we can't restore presenter. You can test it by having...

@mohamad-amin I understand that > loader is going to somehow remove the onSavedInstanceState and onRestoreInstanceState boilerplate Quote from [android developers](https://developer.android.com/reference/android/app/Activity.html#onDestroy()) about onDestory() > This can happen either because the activity...

I have just built a fork with 16kb page size alignment and V8's version updated to 13.9.205.21. Updated V8 engine works way faster than 9.3.345.11, which is used in the...

In order to support color filtering for svgs loaded using fresco, you can change `SvgPictureDrawable` from [example](https://github.com/facebook/fresco/blob/main/samples/showcase/src/main/java/com/facebook/fresco/samples/showcase/imageformat/svg/SvgDecoderExample.java#L148) to following `SvgBitmapDrawable` ```kotlin class SvgBitmapDrawable(private val svg: SVG) : Drawable() { private...