当前位置: 首页 > 知识库问答 >
问题:

找不到com.android.tools.build:gradle:3.3.1[已关闭]

柳胡媚
2023-03-14

请帮帮我!在构建一个新的项目后,我遇到了以下错误:

新问题:

apply plugin: '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在项目结构对话框中显示受影响的模块:app

错误:未能解析:com.android.support.constraint:约束布局:1.1.3在项目结构对话框中显示受影响的模块:应用

共有2个答案

施玉宸
2023-03-14

像这样试试mavenCentral。

buildscript {
repositories {
    mavenCentral()
    jcenter()
}
.....
..........
}
利俊迈
2023-03-14

https://developer.android.com/studio/releases/gradle-plugin 您可以在文件中指定插件版本

 类似资料: