关于解决Eclipse报错显示Unable to build: the file dx.jar was not loaded from the SDK folder

由于最近通过SDK-Manager更新了build-tools,当要用到dx.jar这个包时,自动调用最新build-tools中dx.jar,但是运行android项目时Console却提示:

Failed to load C:\Program Files (x86)\Android\android-sdk\build-tools\26.0.0-preview\lib\dx.jar

Unable to build: the file dx.jar was not loaded from the SDK folder

根据提示的意思应该就是这个dx.jar包有问题(可能是兼容性问题吧,越新问题越多QAQ,蓝瘦)


解决步骤:

(1)找到你Android的SDK安装目录C:\Program Files (x86)\Android\android-sdk,进入build-tools文件夹

(2)发现还有很多其他版本的build-tools,而且版本都是顺序排列的,我们就选择倒数第二个(最新版上面那个文件夹),打开进入lib文件夹


关于解决Eclipse报错显示Unable to build: the file dx.jar was not loaded from the SDK folder_第1张图片


(3)发现里面有dx.jar包,复制粘贴到最新版build-tools存放dx.jar包的目录下,替换掉原来的dx.jar包(C:\Program Files (x86)\Android\android-sdk\build-tools\26.0.0-preview\lib\dx.jar)

(4)完成,再次启动Android项目,问题解决!


有没有可以在不替换这个包的前提下解决呢?毕竟别人自带的包,是吧!

如果有更好的方法或者建议,请提出来!谢谢!



你可能感兴趣的:(Android,android)