Error After Sdk Update
I've just updated Android SDK and now my project gives this error. How can I solve it? Thanks in advance Error:Could not find com.android.tools.build:gradle:3.0.0-alpha4. Searc
Solution 1:
You should read migration guide
Change you build.gradle:
buildscript {
repositories {
...
// You need to add the following repository to download the// new plugin.
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0-alpha4'
}
}
Post a Comment for "Error After Sdk Update"