In my build.gradle I have defined Guava dependency as follows:
implementation(“com.google.guava:guava:33.2.1-android”)
This is flagged by Lint:
A newer version of com.google.guava:guava than 33.2.1-android is available: 33.2.1-jre
But this is not a newer version, this is a different version (not an android version).
Is there a valid reason for a such behaviour or this is a mistake by Lint?
I tried both versions and they both working fine, but according Guava documentation (https://github.com/google/guava) I should use android version (for my android project).