How to fix this gradle app:dexDebug error?

岁酱吖の 提交于 2019-11-28 02:23:41

You are using different version of the same library.

In your case, appcompat and support-v13 have the same dependency: support-v4.

You have to use the same version of support-v4.

I suggest you to change your dependency in:

dependencies {
   compile fileTree(dir: 'libs', include: ['*.jar'])
   compile 'com.android.support:appcompat-v7:21.0.3'
   compile 'com.android.support:support-v13:21.0.3'
}

and remove the android-support-v13.jar from the libs folder.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!