Skip to content

⚙️ Flip org.jetbrains.android to optional #7949

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ChangJoo Park <[email protected]>
Amol Grover <[email protected]>
Jeremy Judeaux <[email protected]>
Letticia Nicoli <[email protected]>
Alex Li <google@alexv525.com>
Alex Li <alexv.525.li@gmail.com>
Marcus Tomlinson <[email protected]>
Juyeong Lee <[email protected]>
Hrishikesh Kadam <[email protected]>
Expand Down
3 changes: 3 additions & 0 deletions resources/META-INF/android-contribs.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<!-- Defines Android-supported IDE-specific contributions and implementations. -->
<idea-plugin>
</idea-plugin>
4 changes: 3 additions & 1 deletion resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
<depends>com.intellij.modules.lang</depends>
<depends>com.intellij.modules.xdebugger</depends>
<depends>org.jetbrains.plugins.yaml</depends>
<depends>org.jetbrains.android</depends>
<depends>Dart</depends>
<depends>Git4Idea</depends>

Expand All @@ -43,6 +42,9 @@
<!-- Contributes Gemini Code Assist extensions. -->
<depends optional="true" config-file="gemini-contribs.xml">com.google.tools.ij.aiplugin</depends>

<!-- Contributes Android-supported features and implementations. -->
<depends optional="true" config-file="android-contribs.xml">org.jetbrains.android</depends>

<!-- Contributes Android Studio-specific features and implementations. -->
<!--suppress PluginXmlValidity -->
<depends optional="true" config-file="studio-contribs.xml">com.intellij.modules.androidstudio</depends>
Expand Down
4 changes: 3 additions & 1 deletion resources/META-INF/plugin_template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
<depends>com.intellij.modules.lang</depends>
<depends>com.intellij.modules.xdebugger</depends>
<depends>org.jetbrains.plugins.yaml</depends>
<depends>org.jetbrains.android</depends>
<depends>Dart</depends>
<depends>Git4Idea</depends>

Expand All @@ -41,6 +40,9 @@
<!-- Contributes Gemini Code Assist extensions. -->
<depends optional="true" config-file="gemini-contribs.xml">com.google.tools.ij.aiplugin</depends>

<!-- Contributes Android-supported features and implementations. -->
<depends optional="true" config-file="android-contribs.xml">org.jetbrains.android</depends>

<!-- Contributes Android Studio-specific features and implementations. -->
<!--suppress PluginXmlValidity -->
<depends optional="true" config-file="studio-contribs.xml">@DEPEND@</depends>
Expand Down