gpt4 book ai didi

android - 错误:无法解决 ':app@debug/compileClasspath'的依赖关系

转载 作者:行者123 更新时间:2023-12-03 05:30:44 25 4
gpt4 key购买 nike

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

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
}

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

最佳答案

1刚弄清楚如何清除此Gradle错误,请执行以下步骤。

  • 转到"file"。
  • 单击“使缓存无效/重新启动”。
  • 再次单击Invalidate Cache / Restart(在对话框窗口上)。

  • 让Gradle不断构建

    要么

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

    关于android - 错误:无法解决 ':app@debug/compileClasspath'的依赖关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59435933/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com