我已经用gson实现了翻新库,但是得到一个导入错误“无法解析符号'Gson'"

zu0ti5jz  于 2022-11-23  发布在  其他
关注(0)|答案(1)|浏览(137)

我已经用gson实现了翻新库,但是得到了一个导入错误。
Android工作室版本
Android工作室北极狐|2020.3.1补丁程序2构建版本号AI-203.7717.56.2031.7678000,构建于2021年8月27日
应用级build.gradle
第一个
顶级构建.gradle

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
        google()
        mavenCentral()
    }
    dependencies {
        classpath "com.android.tools.build:gradle:7.0.3"
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31"

        classpath 'com.google.gms:google-services:4.3.10'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

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

settings.gradel

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        jcenter() // Warning: this repository is going to shut down soon
        maven { url "https://jitpack.io" }
    }
}
rootProject.name = "Exaple app"
include ':app'

获取此错误x1c 0d1x
我已经做了一些事情,如清理项目,重建和无效缓存,并重新启动。但仍然得到同样的错误。
先谢谢你。

dl5txlt9

dl5txlt91#

您还需要实现GSON dependency
你错过了这个我会说

implementation("com.google.code.gson:gson:2.8.9")

相关问题