I’ve also tried by adding the magic code to the `s...
# gradle
a
I’ve also tried by adding the magic code to the `settings.gradle`(not sure if that’s necessary anymore):
Copy code
pluginManagement {
    repositories {
        gradlePluginPortal()
        maven { setUrl(“<https://jcenter.bintray.com/“>) }
    }
    resolutionStrategy {
        eachPlugin {
            if (requested.id.id == “com.android.application”) {
                useModule(“com.android.tools.build:gradle:${requested.version}“)
            }
        }
    }
}