Android Studio Plugin Development
We all love plugins. With their help, we can add specific features to existing programs and improve our development experience. But have you ever tried to build your own plugin? In this article we’ll describe a step-by-step process of creating a simple plugin for Android Studio / IntelliJ IDEA . If you are not acquainted with the structure of IDEA plugins, it’s outlined here . The basic possibilities provided by IntelliJ IDEA are enough for creating plugins of any complexity: from those that resolve applied tasks to those that offer support for custom programming languages. The only difficulty that you may have to deal with is finding relevant documentation. However, you can find answers to almost all possible questions on IDEA’s developer, JetBrains, forum . Now, let’s see plugin development in action! What Android Styler plugin is used for The idea of the Android Styler plugin is to make Android developers’ lives easier when they create a...