At the moment, the watch command only has the following groups.
For Android classes:
- Methods
- Fields
- Android Methods
- Android Fields
For non-Android classes:
- Methods
- Fields
Add the ability to group methods by interfaces. For example, if we have the following interface while inspecting a class from an Android app,
interface MyView {
fun showProgress(visible: Boolean)
fun onUsernameClicked(username: Username)
}
The inspector should show an additional group:
- Methods
- Fields
- Android Methods
- Android Fields
MyView
At the moment, the watch command only has the following groups.
For Android classes:
For non-Android classes:
Add the ability to group methods by interfaces. For example, if we have the following interface while inspecting a class from an Android app,
The inspector should show an additional group:
MyView