在 gradle 7.0+ 中同步 jitpack.io(更改 settings.gradle)并面对错误

问题描述 投票:0回答:1

同步以下代码后:

设置.gradle>>

pluginManagement {
    repositories {
        gradlePluginPortal()
        google()
        mavenCentral()


    }
}
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
`        maven { url 'https://jitpack.io' }`
    }
}


rootProject.name = "test"

include ':app'

同步 gradle 后我的错误是:

无法访问“androidx.fragment.app.FragmentActivity”,它是“com.example.test.MainActivity”的超类型。检查模块类路径是否缺少或冲突的依赖项

以及 build.gradle 中的依赖块>>

dependencies {

    implementation 'androidx.core:core-ktx:1.7.0'
    implementation 'androidx.appcompat:appcompat:1.6.1'
    implementation 'com.google.android.material:material:1.10.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
    testImplementation 'junit:junit:4.13.2'
    androidTestImplementation 'androidx.test.ext:junit:1.1.5'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
    implementation "com.github.cafebazaar.Poolakey:poolakey:2.2.0"

}

在 android studio dolphin 的 gradle 中同步 jitpack 预计有任何错误

为了重现我的代码,创建新项目并添加 maven { url 'https://jitpack.io' } 到存储库设置.gradle

android kotlin gradle androidx jitpack
1个回答
0
投票

您的导入没有错误,正如消息所示,您正在扩展的类中有错误,请检查它是否正确。

你也可以尝试;文件 -> 使缓存无效并重新启动

© www.soinside.com 2019 - 2024. All rights reserved.