Android Studio and Gradle build error

后端 未结 8 640
野性不改
野性不改 2020-11-30 22:38

I\'ve been using the new preview of android studio and really like it. But recently my project won\'t build. I get the following error:

Gradle: 
FAILURE: Bui         


        
相关标签:
8条回答
  • 2020-11-30 23:14

    The only solution I've found is to first create the project in Android Studio, then close the project, then import the project. I searched all over and could not find the root cause and all other solutions people posted didn't work.

    0 讨论(0)
  • 2020-11-30 23:18

    If you are using the Gradle Wrapper (the recommended option in Android Studio), you enable stacktrace by running gradlew compileDebug --stacktrace from the command line in the root folder of your project (where the gradlew file is).

    If you are not using the gradle wrapper, you use gradle compileDebug --stacktrace instead (presumably).

    You don't really need to run with --stacktrace though, running gradlew compileDebug by itself, from the command line, should tell you where the error is.

    I based this information on this comment:

    Android Studio new project can not run, throwing error

    0 讨论(0)
  • 2020-11-30 23:24

    Similar to @joe_deniable 's answer the thing I found with my own projects was that gradle would output that kind of error when there was a misconfiguration of my system.

    I discovered that by running gradlew installDebug or similar command from the terminal I got better output as to what the real problem was.

    e.g. initially it turns out my JAVA_HOME was not setup correctly. Then I discovered it encountered errors because I didn't have a package space setup correctly. Etc.

    0 讨论(0)
  • 2020-11-30 23:24

    I installed Android Studio on an old WinXP with only for me option. After install I did the new project wizard and when opening the new project a got some Gradle error with some failed path to my instalation dir. c:/Document"#¤!"#¤ and settins/...

    The I uninstalled and did a new install with option for all users (C:/Programs/..) then I opend the previous created project with no errors.

    So it might be a path problem. (Just spent 10 sec debugging, so I might be wrong but it solved my gradle error)

    0 讨论(0)
  • 2020-11-30 23:26

    I used a local distribution of gradle downloaded from gradle website and used it in android studio.

    It fixed the gradle build error.

    0 讨论(0)
  • 2020-11-30 23:30

    Edit the gradle wrapper settings in gradle/wrapper/gradle-wrapper.properties and change gradle-1.6-bin.zip to gradle-2.4-bin.zip.

    ./gradle/wrapper/gradle-wrapper.properties :

    #Wed Apr 10 15:27:10 PDT 2013
    distributionBase=GRADLE_USER_HOME
    distributionPath=wrapper/dists
    zipStoreBase=GRADLE_USER_HOME
    zipStorePath=wrapper/dists
    distributionUrl=http\://services.gradle.org/distributions/gradle-1.8-bin.zip
    

    It should compile without any error now.

    Note: update version numbers with the most recent ones

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