我不知道为什么会这样,但是当我想要运行一个项目时,我收到此消息错误:
Error:Execution failed for task ':transformClassesWithJarMergingForDebug'.
> com.android.build.api.transform.TransformException:
java.util.zip.ZipException: duplicate entry: android/support/v4/app/FragmentContainer.class
我多次尝试clean / rebuild
项目,但运行时我总是遇到同样的错误。
的build.gradle: http://pastebin.com/nnE9bpN7
请问您有什么解决方案吗?我真的很坚持。
由于
答案 0 :(得分:2)
compileSdkVersion 'Google Inc.:Google APIs:23'
应该是compileSdkVersion 23
。您已通过相关性添加Google Play服务。
libs
文件夹不应包含任何支持库,例如support-v4
。这些作为maven依赖项再次添加:
compile "com.android.support:support-v4:23.1.1"
compile "com.android.support:appcompat-v7:23.1.1"
compile "com.android.support:design:23.1.1"