Error in android studio when creating a new project

I got this error message when I tried to create a new project in Android studio:

Failed to import Gradle project: Error unmarshaling return header; nested exception is: java.net.SocketException: Connection reset 
+6
source share
3 answers
 Go to Gradle Download last version Open grandle location within Android Studio (in my case is: C:\Program Files (x86)\Android\android-studio\plugins\gradle" Important: backup your existing Android Studio gradle lib folder (in case things go wrong, as some of the commenters have pointed out) Open download file from 2. Override lib folder within Android Studio with lib folder within downloaded file. 
+2
source

I was the same error, I solved it with this solution:

 Open the SDK manager Make sure that the "Extras/Android Support Repository" (not just Android Support Library) is installed or updated. 

Source: http://tools.android.com/recent/androidstudio020released

I hope this helps you

0
source

Fixed description here for me. -Dexternal.system.in.process = true in the VM settings for Android Studio.

0
source

Source: https://habr.com/ru/post/950490/


All Articles