Gradle for Android Kelvin Shee Created December 26, 2017 10:31 I already install latest version 4.4.1 but why still get below the error ? Could not find com.android.tools .build:gradle3.0.0.
Hi Kelvin,
the issue is that the android plugin for gradle is not being found, as you have only specified jcenter as a valid repository in your gradle script. As you can see in google's official docs for 3.0+, you need to specify also the "google()" repository: https://developer.android.com/studio/build/gradle-plugin-3-0-0-migration.html#apply_plugin
that help me, thanks