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).