File tree 6 files changed +24
-0
lines changed
6 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -91,6 +91,10 @@ dependencies {
91
91
" org.jetbrains.plugins.gradle" ,
92
92
" org.intellij.intelliLang" ,
93
93
)
94
+ // The "com.google.tools.ij.aiplugin" is not avaliable for 2023.3:
95
+ if (! ideaVersion.startsWith(" 2024.3" )) {
96
+ bundledPluginList.add(" com.google.tools.ij.aiplugin" )
97
+ }
94
98
if (ideaProduct == " android-studio" ) {
95
99
bundledPluginList.add(" org.jetbrains.android" )
96
100
bundledPluginList.add(" com.android.tools.idea.smali" )
Original file line number Diff line number Diff line change @@ -71,6 +71,10 @@ dependencies {
71
71
" org.jetbrains.plugins.gradle" ,
72
72
" org.intellij.intelliLang" ,
73
73
)
74
+ // The "com.google.tools.ij.aiplugin" is not avaliable for 2023.3:
75
+ if (! ideaVersion.startsWith(" 2024.3" )) {
76
+ bundledPluginList.add(" com.google.tools.ij.aiplugin" )
77
+ }
74
78
if (ideaProduct == " android-studio" ) {
75
79
bundledPluginList.add(" org.jetbrains.android" )
76
80
bundledPluginList.add(" com.android.tools.idea.smali" )
Original file line number Diff line number Diff line change @@ -67,6 +67,10 @@ dependencies {
67
67
" org.jetbrains.plugins.gradle" ,
68
68
" org.intellij.intelliLang" ,
69
69
)
70
+ // The "com.google.tools.ij.aiplugin" is not avaliable for 2023.3:
71
+ if (! ideaVersion.startsWith(" 2024.3" )) {
72
+ bundledPluginList.add(" com.google.tools.ij.aiplugin" )
73
+ }
70
74
if (ideaProduct == " android-studio" ) {
71
75
bundledPluginList.add(" org.jetbrains.android" )
72
76
bundledPluginList.add(" com.android.tools.idea.smali" )
Original file line number Diff line number Diff line change
1
+ <!-- Defines Gemini Code Assist extensions. -->
2
+ <!-- https://developers.google.com/gemini-code-assist/docs/overview-->
3
+ <!-- https://plugins.jetbrains.com/plugin/24198-gemini-code-assist-->
4
+ <!-- https://developer.android.com/studio/preview/gemini-->
5
+ <idea-plugin >
6
+ </idea-plugin >
Original file line number Diff line number Diff line change 37
37
<!-- Contributes IDEA-specific features and implementations. -->
38
38
<depends optional =" true" config-file =" idea-contribs.xml" >com.intellij.modules.java</depends >
39
39
40
+ <!-- Contributes Gemini Code Assist extensions. -->
41
+ <depends optional =" true" config-file =" gemini-contribs.xml" >com.google.tools.ij.aiplugin</depends >
42
+
40
43
<!-- Contributes Android Studio-specific features and implementations. -->
41
44
<!-- suppress PluginXmlValidity -->
42
45
<depends optional =" true" config-file =" studio-contribs.xml" >com.intellij.modules.androidstudio</depends >
Original file line number Diff line number Diff line change 35
35
<!-- Contributes IDEA-specific features and implementations. -->
36
36
<depends optional =" true" config-file =" idea-contribs.xml" >com.intellij.modules.java</depends >
37
37
38
+ <!-- Contributes Gemini Code Assist extensions. -->
39
+ <depends optional =" true" config-file =" gemini-contribs.xml" >com.google.tools.ij.aiplugin</depends >
40
+
38
41
<!-- Contributes Android Studio-specific features and implementations. -->
39
42
<!-- suppress PluginXmlValidity -->
40
43
<depends optional =" true" config-file =" studio-contribs.xml" >@DEPEND@</depends >
You can’t perform that action at this time.
0 commit comments