Gradle Duplicate Entry

前端 未结 1 434
栀梦
栀梦 2020-12-21 01:03

I integrated the Digits mobile sdk into my project and it wouldn\'t build anymore. It has some kind of a clash with gson library that i am using. I get this error during the

相关标签:
1条回答
  • 2020-12-21 01:21

    this is the solution

    compile('com.digits.sdk.android:digits:1.5.0@aar') {
        transitive = true;
        exclude module: 'gson';
    }
    

    you need to add exclude module: 'gson'

    0 讨论(0)
提交回复
热议问题