Nicklas Ansman
Nicklas Ansman
I just tried restoring exactly what the GH Action saves/restores and it make no difference: ``` ~/.gradle/wrapper/ ~/.gradle/caches/modules-2/ ~/.gradle/caches/8.0.2/ .gradle/configuration-cache/ ``` I also deleted all `.lock` and `gc.properties` files before...
I found the issue, I think. We were switching to the binary distribution of Gradle in the beginning of our CI run. If I changed so that we keep the...
I can add that this used to work (at least in version **1.13.2**)
I did bump up virtualenv in the buildscript files but it did not work. Upgrading virtualenv manually using `pip3 install virtualenv --upgrade` did work though!
As long as `rememberCoroutineScope()` handles it
Did anyone file an issue on AGP?
Ah my bad, missed that link
This was caused by an issue in ByteBuddy (see https://github.com/raphw/byte-buddy/issues/1357). A fix was released in 1.12.20. I added a PR (#1002) to update ByteBuddy which would fix this.
Since it's all synchronous otherwise I think each test would run in a dedicated thread. But the threads would probably be reused but that must work or it wouldn't work...
Yes, that's right. It does _not_ repro in an instrumented test for us either. But it does when you put that code in `Activity.onCreate` it does. I'll attach a complete...