I read somewhere about trying this: ``` configura...
# announcements
i
I read somewhere about trying this:
Copy code
configurations.all {
    resolutionStrategy {
        eachDependency { DependencyResolveDetails details ->
            if (details.requested.group == 'org.jetbrains.kotlin') {
                details.useVersion %kotlinVersion%
            }
        }
    }
}
👍 1