我有一个使用许多模块的应用程序,例如facebookSDK
等linkedInSDK
。我需要添加一个使用volley
库的模块,该库也用于linkedInSDK
.
它构建成功,但导致:
Error:Execution failed for task ':splashActivity:dexDebug'.
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Program Files\Java\jdk1.8.0_31\bin\java.exe'' finished with non-zero exit value 2
这个错误。
应用程序构建.gradle:
compile(name: 'app-debug', ext: 'aar')
compile 'com.android.support:support-v4:22.2.0'
compile 'com.mcxiaoke.volley:library:1.0.17@aar'
compile 'com.android.support:appcompat-v7:22.2.0'
linkedInSDK build.gradle:
compile 'com.android.support:support-v4:18.0.0'
compile files('libs/volley.jar')
如您所见,它们都使用 volley 库。当我删除其中一个时,它会cannot be resolved
在该模块中引发错误。
我试过了
defaultConfig {
multiDexEnabled true
}
它没有用。
app 和linkedInSDK 模块都需要volley 库。如何成功构建和运行它