Skip to content
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

Add an optional dependency on the Gemini Code Assist IJ plugin #7964

Merged
merged 1 commit into from
Mar 10, 2025

Conversation

jwren
Copy link
Member

@jwren jwren commented Mar 10, 2025

No description provided.

@jwren jwren requested a review from kenzieschmoll March 10, 2025 18:47
@@ -90,6 +90,7 @@ dependencies {
"org.jetbrains.kotlin",
"org.jetbrains.plugins.gradle",
"org.intellij.intelliLang",
"com.google.tools.ij.aiplugin",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should this be in the next if statement, only if the product is android studio?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If we can provide the support to all users without additional work we should. It may be the case that some support is added through here, and other support will be AS specific.

@@ -70,6 +70,7 @@ dependencies {
"org.jetbrains.kotlin",
"org.jetbrains.plugins.gradle",
"org.intellij.intelliLang",
"com.google.tools.ij.aiplugin",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same here and below

@jwren jwren requested a review from mossmana March 10, 2025 19:02
build.gradle.kts Outdated
@@ -91,6 +91,10 @@ dependencies {
"org.jetbrains.plugins.gradle",
"org.intellij.intelliLang",
)
// The "com.google.tools.ij.aiplugin" is not avaliable for 2023.3:
if (!ideaVersion.startsWith("2024.3")) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this seems fragile. What if the user is on 2024.4 or if we want to support this for versions greater than 2024.3 in the future? Can we add some logic to parse the version so that we can do a >= check instead?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Idk if this version is following semver strictly, but in case it is useful, here is the dart code we use to parse semantic versions and compare them in DevTools: https://github.com/flutter/devtools/blob/master/packages/devtools_shared/lib/src/utils/semantic_version.dart/#L10

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was supposed to be 2023.3.... We have logic in our Java code, this is in the Kotlin code, which is not a full-fledged setup for Kotlin either. I was just going back and forth with @mossmana, given the age of `2023.3, we are removing it so that when the next version of the Flutter IJ plugin has any features added in this space

Support for `2023.3` is removed with this change
@jwren jwren merged commit badf040 into flutter:master Mar 10, 2025
7 of 8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants