错误:无法解析':app @ debug / compileClasspath'的依赖项

时间:2019-12-21 11:50:41

标签: android android-studio gradle

我是Android新手。我建立了一个简单的登录活动(刚刚创建了它),并且我的项目给出了此错误:

ERROR: Unable to resolve dependency for ':app@debug/compileClasspath': Could not find any version that matches com.android.support:appcompat-v7:29.+.

我尝试了这些解决方案,但它们没有起作用:

https://stackoverflow.com/questions/51218535/unable-to-resolve-dependency-for-appdebug-compileclasspath-could-not-resolv

https://stackoverflow.com/questions/47001656/unable-to-resolve-dependency-android-studio-3-0

我的应用程序gradle看起来像这样:

apply plugin: 'com.android.android'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.2"
    defaultConfig {

        minSdkVersion 15
        targetSdkVersion 29
        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"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'com.android.support:appcompat-v7:29.+'
    implementation 'com.android.support:design:29.+'
    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'
}

这是gradle应用

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    ext.kotlin_version = '1.3.20'
    repositories {
        google()
        jcenter()

    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.3.1'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()

    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

考虑到我什至还没有添加自己的问题,我不知道如何解决该问题。请分步说明您的解决方案,这样我就可以重新创建,因为这实际上是我创建的第一个项目。

3 个答案:

答案 0 :(得分:0)

1刚弄清楚如何清除此Gradle错误,请按照以下步骤操作。

  1. 转到“文件”。
  2. 单击“使缓存无效/重新启动”。
  3. 再次单击Invalidate Cache / Restart(在对话框窗口上)。

让Gradle构建不受干扰

2 打开应用程序。 转到gradle脚本。 然后build.gradle(module:app) 最终内部依赖类型(实现'com.android.support:appcompat-v7:27.+' )

答案 1 :(得分:0)

使用时

   compileSdkVersion 29
    buildToolsVersion "29.0.2"

更改

implementation 'com.android.support:appcompat-v7:29.+'
implementation 'com.android.support:design:29.+'

收件人

implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.appcompat:appcompat:1.0.0'

因为Google更改了androidX的支持库

在应用gradle中 改变

apply plugin: 'com.android.android'

apply plugin: 'com.android.application'

答案 2 :(得分:0)

我删除并重新安装了Android Studio。唯一对我有用的东西