最近在做一个项目的时候,引用了好多第三方包,确实,开源就是不错,用起来舒服,但是,他就是编译不通过了,报以下错误:
:app:compileInsideDebugJava FAILED
:app:compileInsideDebugJava FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:compileInsideDebugJava'.
> Compilation failed; see the compiler error output for details.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
BUILD FAILED
Total time: 47.393 secs
tangbindeMacBook-Pro:android tangbin$
真的很恼火,怎么又出错呢,折腾了一圈,发现其实这个错误很简单,就是引入第三方包和目前的包存在重复加载的问题,解决办法也很简单,去除其中一个就行了,纸上谈兵终究是不行了,我们来实践下。
首先找到重复的文件:打开libraries,找打重复的文件,如图
因为我加载的in.sran.cube:cube-sdk:1.0.44.38,这里面已经包含了一个support包,和我自己的冲突了,于是乎很简单,删除即可
未作改变前的代码:
dependencies {
compile 'in.srain.cube:cube-sdk:1.0.44.38'
}
做了修改后的代码
dependencies {
compile ('in.srain.cube:cube-sdk:1.0.44.38'){
exclude module: 'support-v4'
}
}
耐心等待之后,最后大功告成,编译成功