1. 程式人生 > >Android Studio匯入新專案,gradle報 read timed out的情景之一

Android Studio匯入新專案,gradle報 read timed out的情景之一

我使用Android Studio3.0匯入新專案時,gradle報 read timed out的情景之一:
由於專案的sdk沒有使用自己下載的jdk1.8,而是使用AndroidStudio預設的jre目錄,所以導致這個問題
。只要修改下jdk路徑就好:
在這裡插入圖片描述
但是改完後,這個問題是解決了。又出現一個新問題:

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 http://gradle.org/docs/1.8/userguide/gradle_daemon.html 
Please read below process output to find out more: 
MaxPermSize\=512m is removed in 8.0

主要是這句話“MaxPermSize=512m is removed in 8.0”,找到MaxPermSize出現的地方:在gradle.properties。
原因:
org.gradle.jvmargs=-Xmx2048m-XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
這句話的目的是:Gradle的jvm的記憶體分配設定。

解決辦法:把它註釋掉就是使用預設或者系統配置,重新try again就可以了