0

我真的很沮丧。我是 Android 开发和 Gradle 的新手。上周我能够下载 Android Studio 并创建了一个包含几个按钮的简单应用程序。创建和运行它时我没有遇到任何问题。

本周我决定创建另一个没有活动的更简单的应用程序,以检查我的环境是否设置正确。几天后,我无法让 IDE 构建应用程序,并且问题似乎与 Gradle 相关。

这是我的 gradle-wrapper.properties 文件:

distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip

这是我的应用级 build.gradle 文件:


android {
    compileSdkVersion 29
    buildToolsVersion "29.0.3"

    defaultConfig {
        applicationId "com.example.myapp"
        minSdkVersion 16
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }

}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])

    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}

这是顶级 gradle.build 文件:


buildscript {

    repositories {
        google()
        jcenter()

    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.6.3'


        // 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
}

我阅读了所需的其他存储库,并尝试将此代码插入到顶级 Gradle 构建文件中:

    repositories {
        google()
        jcenter()
        maven { url "https://www.jitpack.io" }
    }
}

但这无济于事。当我尝试构建项目时,我收到错误消息说 Gradle 找不到文件(如果我选中“离线”选项)或在线时,我看到如下错误: 原因:org.gradle.api.internal.artifacts。 ivyservice.DefaultLenientConfiguration$ArtifactResolveException:无法解析配置“:classpath”的所有工件

在“设置”中,我选中了“自动检测代理设置”(我不在防火墙后面),并且我正在使用 gradle-wrapper.properties 文件中的 Gradle。

鉴于我能够重建上周创建的应用程序,但无论我尝试什么都无法构建这个新应用程序,我想知道文件缓存是否会导致这个问题。我确实尝试从 .gradle 中删除缓存的 Gradle 文件(我在 Windows 10 上运行),但这并没有帮助。多次,我尝试使缓存无效并重新启动 IDE,但这并没有什么不同。

4

0 回答 0