因為本地的AndroidStudio很久沒用了,所以想要研究下github上的某個代碼的時候,還得重新配下環境
打開了幾個項目,都是提示如下錯誤

Error:Unable to find method 'org.gradle.api.internal.project.ProjectInternal.getPluginManager()Lorg/gradle/api/internal/plugins/PluginManagerInternal;'. Possible causes for this unexpected error include:<ul><li>Gradle's dependency cache may be corrupt (this sometimes occurs after a network connection timeout.) <a href="syncProject">Re-download dependencies and sync project (requires network)</a></li><li>The state of a Gradle build process (daemon) may be corrupt. Stopping all Gradle daemons may solve this problem. <a href="stopGradleDaemons">Stop Gradle build processes (requires restart)</a></li><li>Your project may be using a third-party plugin which is not compatible with the other plugins in the project or the version of Gradle requested by the project.</li></ul>In the case of corrupt Gradle processes, you can also try closing the IDE and then killing all Java processes.
解決方法:
1. 訪問 https://services.gradle.org/distributions/,並查看最新版的gradle,此文發布時是"gradle-2.10-all.zip"
2. 修改項目中"gradle/wrapper/gradle-wrapper.properties"里下面屬性值
... distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip ...
3. 重新執行 gradlew.bat,問題解決
