我已经安装了新的Android Studio。一切都工作得很好,但当我试图创建一个新项目时,它在下载Gradle时卡住了。
有没有办法手动安装Android Studio所需的Gradle ?或者有其他方法可以解决这个问题吗?
我已经安装了新的Android Studio。一切都工作得很好,但当我试图创建一个新项目时,它在下载Gradle时卡住了。
有没有办法手动安装Android Studio所需的Gradle ?或者有其他方法可以解决这个问题吗?
当前回答
对我有用的是:
创建一个虚拟项目,当它卡在Build屏幕上时, 终止studio进程。 打开android studio,打开项目,项目就会崩溃 用已经打开的虚拟项目创建一个新项目,它将毫无问题地创建项目 关闭虚拟项目,享受乐趣
其他回答
打开gradle-wrapper.properties 改变: distributionUrl = https /: / / services.gradle.org/distributions/gradle all.zip——4.4 : - 4.4 - all.zip distributionUrl = http://services.gradle.org/distributions/gradle
注意: 1. 我不关心SSL禁用下载gradle,但其他人可能是敏感的,所以这取决于你。 2. 注意gradle版本,在我的例子中是4.4。
是的,有。
Create a new project and you should Shutdown The Android Studio Application.(Because it takes a long time for you). Goto C:\Users\{Logged in User}\.gradle folder There is a folder there that show you which version of gradle Android Studio requires (e.g. gradle-1.8-bin) Download this version from internet (e.g. gradle-1.8-bin.zip). Goto C:\Users\{Logged in User}\.gradle\wrapper\dists\gradle-1.8-bin There is a folder here that its name is like a GUID. You should just copy the zip file that you've already downloaded from internet into this folder. Execute Android Studio and create a new project.
Windows用户
使用您的网络资源监视器
打开任务管理器[Ctrl+Shift+Esc]
性能选项卡
开放资源监视器(从底部开始)
首先,我决定在阅读完这里的答案后等待。但能持续多久?如何确保它能完成?他们应该提供下载百分比,但他们没有。为了了解正在进行的某些进程,打开这个网络资源监视器,它会显示正在下载Studio64.exe。如果不是(如果它显示0B/Sec),那么要么网络不可用,要么应用程序没有响应。
Android Studio自带Gradle,但它没有命令行Gradle功能。
我发现我的笔记本电脑也出现了同样的问题,尽管我等了很长时间。这就是我所做的,而且对我很有效。强行关闭Android Studio并再次启动。这一次,只需打开现有项目,让它负责完成构建/下载过程。
你可以尝试的另一个选项是,如果你查看File -> Settings,有一个Gradle location选项。你可以去Gradle下载站点,下载Gradle的本地发行版,并将Gradle的位置指向该本地目录。