From e8b4e7fde4e75d33fefa9ba44735cbc8104cf31e Mon Sep 17 00:00:00 2001 From: Jaime Wren Date: Mon, 1 Dec 2025 23:49:20 -0800 Subject: [PATCH] Update the verifier information to include additional IDEs in validation https://github.com/flutter/dart-intellij-third-party/pull/108 --- build.gradle.kts | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index f17d9de79..16aacdafe 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -292,8 +292,16 @@ intellijPlatform { ignoredProblemsFile.set(project.file("verify-ignore-problems.txt")) ides { - recommended() - } + recommended() + select { + types = listOf( + IntelliJPlatformType.IntellijIdeaCommunity, + IntelliJPlatformType.IntellijIdeaUltimate, + IntelliJPlatformType.AndroidStudio, + ) + channels = listOf(ProductRelease.Channel.RELEASE) + } + } } }