Jakub Mosakowski
Jakub Mosakowski
I've observed similar behavior in my project. It seems that TextField doesn't support asynchronous updates. Sometimes when the process of reducing the state and emitting it takes too long, TextField...
One solution I came up with (a bit dirty one - I'd like to have one source of data :/) is to not update field values from the state directly....
The same problem started to occur in our repo. Is there any way to check if the runner hit its limitation? Our builds ends with: ``` 2022-12-06T15:40:04.3131651Z AAPT2 aapt2-7.3.0-8691043-linux Daemon...
For me what fixed the issue was reducing the amount of memory used by Gradle JVM. https://docs.gradle.org/current/userguide/build_environment.html#sec:configuring_jvm_memory (replaced org.gradle.jvmargs=-**Xmx4g** with org.gradle.jvmargs=**-Xmx6g**). EDIT: It doesn't work anymore. No idea, maybe it...
Sure. Examples of failing builds: https://github.com/SpotOnInc/android-omnichannel/actions/runs/3638760141 https://github.com/SpotOnInc/android-omnichannel/actions/runs/3638651891 https://github.com/SpotOnInc/android-omnichannel/actions/runs/3638619301 https://github.com/SpotOnInc/android-omnichannel/actions/runs/3638519339 https://github.com/SpotOnInc/android-omnichannel/actions/runs/3638515786
The interesting part is that it doesn't seem to be related to any of our changes. I created a branch that is reverted by the last X commits (to the...
@breedx-splk Were we able to find any reproduction steps on that? We've tried the 0.12.0 as well and we are seeing significant number of similar crashes still. We didn't find...