Android Studio 3.3导入Eclipse 工程后,出现如下提示
Could not find com.android.tools.build:gradle:3.3.0-alpha11.
Searched in the following locations:
解决方案:
在项目的build.gradle文件中添加如下内容即可解决。
repositories {
jcenter()
maven { url 'https://maven.google.com' } //添加行
}