How to exclude Android Studio compatibility from an Intellij IDEA plugin? Follow
Answered
I want to build a plugin only for IntelliJ, which won't be compatible with Android Studio. Now, if I only include
<depends>com.intellij.modules.java</depends>
in the plugin.xml file, then on the listing page it will appear that it's compatible with Android Studio as well. How can I exclude Android Studio?
Please sign in to leave a comment.
In the plugin's dashboard in Marketplace, you can specify the target IDEs manually, as below:
Thank you!