解决 android Studio3.2 更新异常

android studio3.2今天更新,结果用了一上午才算更新完成,查了网上资料没有说明,简单的说一下我遇到的问题。
更新过程没得说,程序员都懂,直接略过。
然后说遇到的问题,首先是jcenter被墙的问题,我发现studio更新的时候需要下载kotlin的一下插件,但是连接超时,无法下载,我开始使用jcenter(){url "http://jcenter.bintray.com/"}发现也是无法连接的,依然是被墙。然后使用maven{ url 'http://maven.aliyun.com/nexus/content/repositories/central/'} google() jcenter() 最后发现可以更新插件。
第二是报异常No cached version of org.jetbrains.kotlin,我的解决方法是通过修改android studio的设置去掉 Offline work 选项解决的。在file --> Setting --> Gradle 中把√取消。
解决 android Studio3.2 更新异常_第1张图片

补充 3.2后续更新遇到的问题

周五AS推出一些更新,但是更新以后遇到有遇到其他问题,建议3.2还是暂时别更新的,除非你有时间去慢慢改。。
显示的log信息

Unable to start the daemon process.
This problem might be caused by incorrect configuration of the daemon.
For example, an unrecognized jvm option is used.
Please refer to the user guide chapter on the daemon at https://docs.gradle.org/4.6/userguide/gradle_daemon.html
Please read the following process output to find out more:
-----------------------

虽然说提示是Gradle错误,但是我修改了配置不管用,我解决方法就是重启电脑,然后就OK了。

你可能感兴趣的:(Android开发)