We've found that ErrorProne flags all `@Subscribe` annotated methods with an [UnusedMethod](https://errorprone.info/bugpattern/UnusedMethod) warning ErrorProne has a [Keep](https://errorprone.info/api/latest/com/google/errorprone/annotations/Keep.html) annotation which could be applied to the Subscribe annotation in order to avoid this. The alternatives [seem to be](https://github.com/google/error-prone/issues/2881) suppressing the warning for each method or adding the subscribe annotation to a growing exemption list. Would you be open to a PR to annotate Subscribe with @Keep?