My android app refuses to build with the following error:
Program type already present: com.google.gson.FieldAttributes Message{kind=ERROR, text=Program type
add this code to your build.gradle(app) -
dependencies { configurations { all*.exclude group: 'com.google.code.gson' }
This should solve your problem.