How to view source code of Gradle tasks defined in plugins using Android Studio?
Asked Answered
V

1

9

In Android Studio Gradle tab I'm able to find run task from application plugin.

List of tasks of AS project

I want to view source code of this task.

Right click -> Jump to Source is disabled for this task.

How to view source code of tasks defined in plugins using Android Studio?

Vespers answered 14/2, 2018 at 21:18 Comment(0)
S
2

input command like:

./gradlew help --task "${taskName}"

terminal will show you class, just search the class.

Strontian answered 11/1, 2022 at 9:12 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.