This message was deleted.
# community-support
s
This message was deleted.
v
It tells you the the class and method where this is in the message
And besides that, you can use
-s
to get a stacktrace to the origin of Gradle deprecation warnings
v
Seeing the following output but not the class & method
Copy code
> ./gradlew assemble --warning-mode=all

> Configure project :myAndroidLibrary
Publishing -> com.example:my-android-library:7.4.1
IncrementalTaskInputs has been deprecated. This is scheduled to be removed in Gradle 8.0. On method 'IncrementalTask.taskAction$gradle_core' use 'org.gradle.work.InputChanges' instead. Consult the upgrading guide for further information: <https://docs.gradle.org/7.5.1/userguide/upgrading_version_7.html#incremental_task_inputs_deprecation>

BUILD SUCCESSFUL in 865ms
50 actionable tasks: 50 up-to-date
Can it happen if a dependency has this issue ?
c
It’s in the message:
On method 'IncrementalTask.taskAction$gradle_core'
v
I can just repeat, it is in the output you showed and you can get a stacktrace if you use
-s
On method 'IncrementalTask.taskAction$gradle_core'