- 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 buildPlugin runIdea
- hit debug button as usual
./gradlew buildPlugin runIdea
- Add entry to plugin.xml (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.java
like this
addAction("com.developerphil.adbidea.action.NewAction", group);