The upcoming IntelliJ Platfrom Gradle plugin has a new syntax for defining IDE related dependencies that sortDependencies does not like. ./gradlew checkSortDependencies oddly enough passes but the sortDependencies task will fail when running into this syntax.
dependencies {
intellijPlatform {
instrumentationTools()
androidStudio(libs.versions.androidStudio)
}
}
The upcoming IntelliJ Platfrom Gradle plugin has a new syntax for defining IDE related dependencies that
sortDependenciesdoes not like../gradlew checkSortDependenciesoddly enough passes but thesortDependenciestask will fail when running into this syntax.dependencies { intellijPlatform { instrumentationTools() androidStudio(libs.versions.androidStudio) } }