如何排除编译文件

时间:2016-09-05 13:41:54

标签: android gradle android-gradle

我在我的应用程序中使用了dropbox和box。 但是当我使用Dropbox和最新的SDK时,一些类与Box SDK冲突。

所以我找到了一个可以排除组和编译文件的解决方案。

 compile('com.dropbox.core:dropbox-core-sdk:2.1.1') {
        exclude group: 'com.fasterxml.jackson.core'//for Box
        compile 'com.squareup.okhttp3:okhttp:3.3.1'// this for PayPal

    }

注意: 所有工作良好意味着100%。

0 个答案:

没有答案