无法解析SerializedName

时间:2016-03-03 08:54:08

标签: android

我制作了一个Bean类,但是当我运行它时,这就是错误。我不知道如何解决它。请帮帮我。

 Error:(7, 8) error: cannot find symbol class SerializedNameError:Execution failed for task ':app:compileDebugJavaWithJavac'.

这是build.gradle:

 apply plugin: 'com.android.application'android {
compileSdkVersion 23
buildToolsVersion "23.0.2"

defaultConfig {
    applicationId "com.example.administrator.Myappliction"
    minSdkVersion 15
    targetSdkVersion 23
    versionCode 1
    versionName "1.0"
    multiDexEnabled true
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}}   dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'org.jbundle.util.osgi.wrapped:org.jbundle.util.osgi.wrapped.org.apache.http.client:4.1.2'
compile 'com.android.support:design:23.1.1'
compile files('libs/gson_1.7.jar')
compile files('libs/gson-2.2.4.jar')
compile "com.google.android.gms:play-services:8.3.0"}

4 个答案:

答案 0 :(得分:3)

在您的模型中:

import com.google.gson.annotations.SerializedName;

在build.gradel中添加gson和converter-gson

dependencies {
.
.
 implementation 'com.squareup.retrofit2:converter-gson:2.5.0'
 implementation 'com.google.code.gson:gson:2.6.2'
}

答案 1 :(得分:1)

只需添加implementation 'com.squareup.retrofit2:converter-gson:2.4.0'

在您的Gradle文件中

答案 2 :(得分:0)

再次同步gradle.build文件解决了我的问题。

答案 3 :(得分:0)

在您的 Gradle 文件和模型中添加 GSON 依赖项后,不要忘记确保您已将 GSON 依赖项更新到最新版本(它解决了我的问题)