Róbert Papp

Results 849 comments of Róbert Papp

Could we filter on [these](https://docs.gradle.org/current/javadoc/org/gradle/api/artifacts/Configuration.html#isCanBeConsumed--)?

Could it be that the installation did not complete fully? e.g. due to https://github.com/android-actions/setup-android/issues/283. Are you sure that the first error in the logs, @lukasz-kalnik-gcx? I had some partial success...

I think the hash based was chosen because of its stability, or at least that's a good argument for it. Adding/removing/renaming a test doesn't affect all the shards only that...

@stanislasbonifetto can you please rename this issue to "@JacksonXmlElementWrapper doesn't work in constructors"? It has nothing to do with Kotlin or data classes as was discussed, removing `data` doesn't change...

@k163377 Java records and Kotlin data classes are not the same thing, unless the Kotlin data class is annotated with [@JvmRecord](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.jvm/-jvm-record/) AND targeting a supported Java version. We can use...

How did you fix? Just curious. I recently ran into getting screenshots for non-failing failures (try-catch like yours) I solved it with this: https://github.com/TWiStErRob/net.twisterrob.libraries/blob/main/twister-lib-android/espresso/src/main/java/net/twisterrob/android/test/espresso/JustFailFailureHandler.java Example usage: https://github.com/TWiStErRob/net.twisterrob.libraries/blob/56b7c95950e08cea0ce52ddc26e454f0620e436b/twister-lib-android/espresso/src/main/java/net/twisterrob/android/test/espresso/EspressoExtensions.java#L71

@ChrisCraik keeping is not just about speed, more about size. If you keep the whole of `androidx.test`, the deployment speed goes down significantly, because the DEX (and hence APK size)...

I'm not sure if yours is the same but there was this problem (in the past?) where you get a log: > Overslept and turned a tap into a long...

(I also couldn't find the docs for this function, I have a feeling it should be listed here: https://kotest.io/docs/assertions/inspectors.html)

Those have different semantics: | Result | any | assertSoftly | with = statements | |--------|--------|--------|-------| | pass + pass | pass | pass | pass | | pass +...