I am trying to generate SHA1 using `./gradlew sig...
# community-support
s
I am trying to generate SHA1 using
./gradlew signingReport
and getting error 'Incompatible because this component declares a component for use during compile-time, compatible with Java 11 and the consumer needed a component for use during runtime, compatible with Java 8' my current java version is 1.8.0_441 and Gradle version is 8.12.1, Appreciate any help
c
There is a dependency (likely listed in the full error message) that requires Java 11 yet you’re running Java 8.
👆 1