您的位置:首页 > 编程语言 > Java开发

eclipse adt 升级后运行报错

2015-08-05 11:16 597 查看
一.报错信息:Unable to execute dex: Cannot merge new index 65665 into a non-jumbo instruction......

二.解决办法

1."Try to delete all the build folders manually and build again, making sure
the dexOptions.jumboMode is set to true in the project?

There's an issue where the root project's build is not deleted in the clean task and this contains some information about the pre-dexed libraries."

2.eclipse在project.properties中首行添加dex.force.jumbo=true;androidstudio如下设置:
android {
dexOptions {
jumboMode = true
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  adt