import the.bytecode.club.bytecodeviewer.api.*; import java.util.ArrayList; import org.objectweb.asm.tree.ClassNode; import the.bytecode.club.bytecodeviewer.decompilers.*; public class Test extends Plugin { @Override public void execute(ArrayList classNodesList) { PluginConsole gui = new PluginConsole("Skeleton"); gui.setVisible(true); gui.appendText(Smali.decompileClassNode(the.bytecode.club.bytecodeviewer.BytecodeViewer.viewer.workPane.getCurrentClass().cn)); } }