如何使用Gradle构建时在aar中排除特殊包

时间:2016-05-08 06:13:05

标签: android gradle

enter image description here

我想使用名为speechkit的lib,但它包含齐射,其中的凌空不是最新版本。现在,我想使用compile 'com.android.volley:volley:1.0.0'。当然,多个dex文件定义了错误。 我想像下面这样排除它,但是失败了,错误继续。

compile(name: 'speechkit-2.1.3', ext: 'aar') {
    exclude group: 'com.android.volley', module: 'volley'
}

如何排除凌空的情况?谢谢你的帮助。

0 个答案:

没有答案