My android app refuses to build with the following error:
Program type already present: com.google.gson.FieldAttributes
Message{kind=ERROR, text=Program type
After 3 hours of googling around I finnaly found an Answer:
GPDR compilance library caused the problem
implementation ('com.google.android.ads.consent:consent-library:1.0.6') {
exclude module: 'gson'
}
add this code to your build.gradle(app) -
dependencies {
configurations {
all*.exclude group: 'com.google.code.gson'
}
This should solve your problem.
Add this line to build.gradle file.
configurations {
all*.exclude group: 'com.google.code.gson'
}
Add Dependency to build.gradle file
implementation 'com.google.code.gson:gson:2.8.2'