kotlin android studio gradle同步问题帮助plz

mgdq6dx1  于 2022-12-04  发布在  Kotlin
关注(0)|答案(1)|浏览(149)

我试图导入写在2016年左右的项目,但发生如下错误你如何解决这些问题?enter image description here

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

buildscript {
    repositories {
        jcenter()
        maven {
            url 'https://maven.google.com'
            }

    }
    dependencies {
        classpath 'com.android.tools.build:gradle:7.31'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}


allprojects {
    repositories {
        mavenCentral()
        jcenter()
    }
}

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

这是我的身材。gradle
https://github.com/udacity/ud839_Miwok/issues/143)我尝试了上述网站提供的解决方案,但问题没有解决我找到了错误的解决方案吗?

szqfcxe2

szqfcxe21#

Jcenter()的生命周期即将结束
在jcenter()行下面添加maven {url"https://jitpack.io"}
1.将Gradle插件升级到最高4.2.2,将Gradle版本升级到6.9.2。
2.可能存在过时的库,您必须在build.gradle中更新这些库

相关问题