找不到com.android.tools.build:gradle:3.3.1

时间:2019-03-04 07:56:07

标签: android android-studio android-gradle

请帮助我! 构建新项目后,我遇到以下错误: Could not find com.android.tools.build:gradle:3.3.1

新问题:      应用插件:“ com.android.application”

android {
    compileSdkVersion 28
    defaultConfig {
    applicationId "com.example.sqlitedb"
    minSdkVersion 25
    targetSdkVersion 28
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
    buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android-      optimize.txt'), 'proguard-rules.pro'
    }
}

}

  dependencies {
  implementation fileTree(dir: 'libs', include: ['*.jar'])
  implementation 'com.android.support:appcompat-v7:28.0.0'
  implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
  androidTestImplementation 'com.android.support.test.espresso:espresso-   core:3.0.2'}

发现错误: 错误:无法解决:com.android.support:appcompat-v7:28.0.0 在项目结构对话框中显示 受影响的模块:应用

错误:无法解决:com.android.support.constraint:constraint-layout:1.1.3 在项目结构对话框中显示 受影响的模块:应用

2 个答案:

答案 0 :(得分:-1)

https://developer.android.com/studio/releases/gradle-plugin 您可以在Android Studio的“文件”>“项目结构”>“项目”菜单中或顶级build.gradle文件中指定插件版本。插件版本适用于该Android Studio项目中内置的所有模块。以下示例将插件从build.gradle文件设置为版本3.3.0

答案 1 :(得分:-2)

尝试使用 mavenCentral 这样的方法。

buildscript {
repositories {
    mavenCentral()
    jcenter()
}
.....
..........
}