Remove support for an older IntelliJ Platform / Android Studio version from the project and clean up obsolete code, baselines, and CI configurations.
69
83%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
You are tasked with removing support for an older IntelliJ Platform or Android Studio version (e.g., dropping support for 2025.1 / build 251 and raising the lower bound to 2025.2 / build 252).
Systematically update compatibility ranges, clean up CI verification loops and baseline files, identify and remove obsolete compatibility code or TODOs, check repository issues, and update documentation.
251 for 2025.1) and the new lower bound (e.g., 252 for 2025.2)../gradlew testClasses to ensure the project compiles before making changes.gradle.properties)gradle.properties.sinceBuild=<version> to the new lower bound build number (e.g., change sinceBuild=251 to sinceBuild=252).tool/github.sh)tool/github.sh.VERIFY_BOT verification loop (for version in ...; do)../gradlew verifyPlugin is only run against active versions in the compatibility range.tool/baseline/)tool/baseline/<version>/ for the removed version directory.git rm -r tool/baseline/<version>) so baseline update scripts (tool/update_baselines.sh) do not attempt to verify unsupported versions.src/ for references to the removed build number or version string (e.g., 251, 2025.1).DartPluginVersion.java or UI compatibility shims) that check for the removed version and simplify or remove dead code paths.TODO: remove when dropping support for <version> or similar workarounds that can now be cleaned up.repo:flutter/flutter-intellij <version> or platform compatibility issues).CHANGELOG.md: Under the ### Removed section, add an entry documenting the removal (e.g., - Support for platform version 2025.1.).docs/building.md. Its version examples are illustrative and should not be updated when removing a platform version../gradlew testClasses to verify compilation../gradlew test to verify unit tests pass../gradlew verifyPlugin to verify that plugin verification succeeds against the new compatibility range.21aaf0b
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.