Cannot find a version of 'com.google.code.findbugs:jsr305' that satisfies the version constraints
I had a similar problem today and found this : https://github.com/trello/RxLifecycle/issues/154
Manged to fix my problem by editing the Gradle Scripts build.gradle in the (module:app) under dependancies adding :
androidTestImplementation 'com.google.code.findbugs:jsr305:1.3.9'
I originally tried a different version number but got an error that told me what version to use, so you may need to have a couple of tries.