Program type already present com.google.gson.FieldAttributes

前端 未结 4 2152
一生所求
一生所求 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 12:06

    Add this line to build.gradle file.

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

提交回复
热议问题