概述
前两天在AndroidStudio开发的项目中使用EventBus.jar(一个很好用的事件分发和接收框架https://github.com/greenrobot/EventBus),但是在deploy的时候,一直出现这个错误:local path doesn't exist,搞了好久不知道哪里出问题,最后没办法,用Eclipse来编译运行。
今天又试着google了一把,找到一个看着靠谱的方法试了试,真给解决了,哈哈~~现在记录一下。
原文地址:http://stackoverflow.com/questions/18256177/android-studio-local-path-doesnt-exist
解决办法:
1:将build.gradle中的gradle版本改到0.6.+,如下
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.6.+'
}
}
2:将gradle/wrapper/ gradle-wrapper.properties中改动如下,将版本改为1.8:
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http://services.gradle.org/distributions/gradle-1.8-all.zip
3:同步,点击下面这个按钮:
4:重新编译项目,如果还有问题,试着执行File > Invalidate Caches/Restart。
我做完第三步后,就好了,如果大家用这个方法也没解决,那我也就无能为力了~~
最后
以上就是魁梧黄蜂为你收集整理的AndroidStudio错误local path doesn't exist解决办法的全部内容,希望文章能够帮你解决AndroidStudio错误local path doesn't exist解决办法所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复