未解析的引用:KotlinAndroid Studio项目中的Gson()

mjqavswn  于 2022-11-06  发布在  Kotlin
关注(0)|答案(1)|浏览(155)

我在我的build.gradle(Module)文件中实现了Lib implementation 'com.google.code.gson:gson:2.9.1',但成功同步后,Gson()引用无法解析。我搜索了整个互联网,但每个人都说您只需要Lib,但我已经实现了它,它并没有解决我的问题...
主要活动kt x1c 0d1x

build.gradle

    plugins {
    id 'com.android.application'
    id 'org.jetbrains.kotlin.android'
    id 'kotlin-android-extensions'
}    

android {
    namespace 'com.example.qrcodescannertest'
    compileSdk 32

    defaultConfig {
        applicationId "com.example.qrcodescannertest"
        minSdk 28
        targetSdk 32
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }    

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    kotlinOptions {
        jvmTarget = '1.8'
    }
}   

dependencies {

    implementation 'androidx.core:core-ktx:1.7.0'
    implementation 'androidx.appcompat:appcompat:1.4.1'
    implementation 'com.google.android.material:material:1.5.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
    testImplementation 'junit:junit:4.13.2'
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'

    implementation 'com.github.yuriy-budiyev:code-scanner:2.3.2'
    implementation 'com.airbnb.android:lottie:5.2.0'

    implementation 'com.google.code.gson:gson:2.9.1'    
    }

有谁知道这里的错误是什么吗?提前感谢!

zour9fqk

zour9fqk1#

我自己解决的:
文件-〉使缓存失效并重新启动一次。现在引用Gson()是有效的。

相关问题