Skip to content

Instantly share code, notes, and snippets.

@code-twister
Created January 8, 2018 10:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save code-twister/c59c921fe3a8bbefb7eee52c24965d84 to your computer and use it in GitHub Desktop.
Save code-twister/c59c921fe3a8bbefb7eee52c24965d84 to your computer and use it in GitHub Desktop.
plugin xml for Android Studio
<idea-plugin>
<id>com.example.plugin</id>
<name>ExamplePlugin</name>
<vendor email="test@example.com" url="http://www.example.com">Example</vendor>
<description><![CDATA[
Some description of the plugin, what it does, so people can have a better idea if they want to use it
]]></description>
<change-notes><![CDATA[
Release notes here
]]>
</change-notes>
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
on how to target different products -->
<depends>com.intellij.modules.lang</depends>
<project-components>
<component>
<implementation-class>com.example.plugin.TestProjectComponent</implementation-class>
</component>
</project-components>
</idea-plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment