Search code examples
androidandroid-studiogradlebuild

\gradle-wrapper.properties not found in Android Studio


\gradle-wrapper.properties not found in Android Studio

I have cloned a git project and I am getting the below issue.

enter image description here

How to resolve it?


Solution

  • Create a gradle/wrapper/gradle-wrapper.properties file and also put the gradle-wrapper.jar file in the same directory.

    That's how the gradle-wrapper.properties file should look like:

    distributionBase=GRADLE_USER_HOME
    distributionPath=wrapper/dists
    zipStoreBase=GRADLE_USER_HOME
    zipStorePath=wrapper/dists
    distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
    

    You can also just copy the gradle directory from another project and edit the wrapper version.