- Open project in Intellij
- Open edit configurations to create a new run/debug configuration
- Choose a new gradle configuration and name it
build and run
that runs./gradlew runIde
- Hit debug button as usual
- Execute command
./gradlew runIde
- Add entry to plugin.xml inside actions tab (below line 100)
<action id="com.developerphil.adbidea.action.NewAction"
class="com.developerphil.adbidea.action.NewAction"
text="New Action"
description="Playing with the plugin">
</action>
- Create and implement a new
NewAction
class that extends fromAdbAction
(you can create that from the plugin view, right click on the class name and choosecreate class
- Implement its abstract methods
- Add new entry in
QuickListAction.kt
like this
addAction("com.developerphil.adbidea.action.NewAction", group)