Róbert Papp

Results 837 comments of Róbert Papp
trafficstars

> My understanding is that Android Lint recognizes the Error Prone @CheckReturnValue, too. I just double-checked [`CheckResultDetector`](https://android.googlesource.com/platform/tools/base/+/studio-master-dev/lint/libs/lint-checks/src/main/java/com/android/tools/lint/checks/CheckResultDetector.kt#49) in lint and it has supported 7 aliases in AGP 3.2.1-7.1.3 for sure....

Is it possible errorprone was added by one of these random pokes in the past? There are only [3 usages](https://github.com/android/android-test/search?q=com.google.errorprone.annotations), you added the 4th, @cpovirk. Compared to 250 usages of...

Well I see 4 usages: * com.google.errorprone.annotations.MustBeClosed in Tracer A library-internal class, so consumers don't really use it. As far as I remember this works out of the box (in...

Test butler already does this https://github.com/linkedin/test-butler#what-does-it-do, but a first-party implementation would be really nice here.

@JoseAlcerreca "support" doesn't necessarily mean it's on by default. It could be an extra library like recycler contrib or web. @brettchabot what do we need to do/help with to get...

Is there an `androidx.core:core-test` artifact that could house this?

That would be best, I agree. I have a feeling they can't just add the class reference, because that would mean pulling in a dependency that is not really used....

@brettchabot in your previous comment did you forget the backticks? because it looks like there might be XML inserted mid-sentence. --- I could get it to show by pressing "reply"...

When do you need to change/query the idling registry concurrently? As far as I know using Espresso with standard components everything happens on the instrumentation or main thread and things...