Home > Software design >  facing difficulty to download gradle in dolphin android version
facing difficulty to download gradle in dolphin android version

Time:10-02

After installing the new windows10 i am facing issue with newer version of android studio dolphin everytime when I open android studio with a new project or an existing project it starts downloading the gradle 7.4 and after sometime i got an error of timeout. I tried a method found on youtube where the gradle wrapper properties are replaced but it did not work.

CodePudding user response:

Android-Studio start downloading gradle 7.4 because android dolphin plugin version is compatible with Gradle 7.4.
Please visit :https://developer.android.com/studio/releases/gradle-plugin.html.

You get error of timeout because of connectivity problems and slow net speed.

CodePudding user response:

I faced some difficulties too when I was updating android studio to dolphin version.

  • Go to gradle-wrapper.properties and try to change distributionUrl value to distributionUrl=https://services.gradle.org/distributions/gradle-7.4-bin.zip
  • Go to the project structure and change gradle version to 7.4
  • Related