Manually install Gradle and use it in Android Studio

后端 未结 17 2029
忘掉有多难
忘掉有多难 2020-12-07 11:35

I\'m using Android Studio. How can I manually install and use Gradle within Android Studio.

I\'ve downloaded Gradle from http

相关标签:
17条回答
  • 2020-12-07 12:17

    1.Download the Gradle form gradle distribution

    2.Extract file to some location

    3.Open Android Studio : File > Settings > Gradle > Use local gradle distribution navigate the path where you have extracted the gradle.

    4.click apply and ok

    Done

    0 讨论(0)
  • 2020-12-07 12:20

    Assuming this is a windows system and we are using gradle-2.1-all [Applicable to any gradle version, just change the version as we need]

    All the gradles can be found in http://services.gradle.org/distributions/


    Check the <Your Project>\gradle\wrapper\gradle-wrapper.properties Make sure the distributionUrl is

    distributionUrl=http\://services.gradle.org/distributions/gradle-2.1-all.zip
    

    This is enough as it will automatically download the gradle.

    After doing the above stuff, if you have downloaded the zip, paste the gradle-2.1-all.zip in

    C:\Users\<username>\.gradle\wrapper\dists\gradle-2.1-all\<some_hash_key>\
    

    It will save the extra downloading time.

    0 讨论(0)
  • 2020-12-07 12:20

    Step 1. Download the latest Gradle distribution

    Step 2. Unpack the distribution

    Microsoft Windows users

    Create a new directory C:\Gradle with File Explorer.

    Open a second File Explorer window and go to the directory where the Gradle distribution was downloaded. Double-click the ZIP archive to expose the content. Drag the content folder gradle-4.1 to your newly created C:\Gradle folder.

    Alternatively you can unpack the Gradle distribution ZIP into C:\Gradle using an archiver tool of your choice.

    Step 3. Configure your system environment

    Microsoft Windows users

    In File Explorer right-click on the This PC (or Computer) icon, then click Properties -> Advanced System Settings -> Environmental Variables.

    Under System Variables select Path, then click Edit. Add an entry for C:\Gradle\gradle-4.1\bin. Click OK to save.

    Step 4. Verify your installation

    0 讨论(0)
  • 2020-12-07 12:20

    Like @ said

    https://services.gradle.org/distributions/

    Download The Latest Gradle Distribution File and Extract It, Then Copy all Files and Paste it Under:

    C:\Users\{USERNAME}\.gradle\wrapper\dists\

    but you have to first make Android Studio try downloading the zip file and cancel it.

    That way you can get the hash and copy the file and put it under the hash

    0 讨论(0)
  • 2020-12-07 12:21

    1.Install gardle as per the given link http://services.gradle.org/distributions/ 2.Extract this downloaded file in C:\Gradle\gradle-4.5 location 3.set the environment of gradle This PC\properties\advance system settings\Environment variable 4.let's start Android studio And set the path of gradle C:\Gradle\gradle In Android studio

    0 讨论(0)
提交回复
热议问题