From f23b283a0d9e181ec65560ae5174d3548c7f7702 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Tue, 30 Jul 2024 13:13:37 +0200 Subject: [PATCH] android_studio.md: plugin.xml cleanup --- topics/products/androidstudio/android_studio.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/topics/products/androidstudio/android_studio.md b/topics/products/androidstudio/android_studio.md index c6cab82bb..2fe950dcf 100644 --- a/topics/products/androidstudio/android_studio.md +++ b/topics/products/androidstudio/android_studio.md @@ -154,14 +154,10 @@ When using APIs from the Android plugin, declare a dependency: ``` As discussed in the [Plugin Dependencies](plugin_compatibility.md#declaring-plugin-dependencies) section of this guide, a plugin's dependency on [Modules Specific to Functionality](plugin_compatibility.md#modules-specific-to-functionality) must be declared in [plugin.xml](plugin_configuration_file.md). -When using Android Studio-specific features (APIs), a dependency on `com.intellij.modules.androidstudio` must be declared as shown in the code snippet below. +When using Android Studio-specific features (APIs), a dependency on `com.intellij.modules.androidstudio` must be declared. Otherwise, if only general IntelliJ Platform features (APIs) are used, then a dependency on `com.intellij.modules.platform` must be declared as discussed in [Plugin Compatibility with IntelliJ Platform Products](plugin_compatibility.md). -```xml -com.intellij.modules.androidstudio -``` - ## Android Specific Extension Points See [](android_plugin_extension_point_list.md).