Program type already present com.google.gson.FieldAttributes

前端 未结 4 2160
一生所求
一生所求 2020-12-18 11:47

My android app refuses to build with the following error:

Program type already present: com.google.gson.FieldAttributes
Message{kind=ERROR, text=Program type         


        
4条回答
  •  被撕碎了的回忆
    2020-12-18 11:58

    add this code to your build.gradle(app) -

    dependencies {
        configurations {
        all*.exclude group: 'com.google.code.gson'
    }
    

    This should solve your problem.

提交回复
热议问题