Tuesday 2 January 2018

Android Studio - Gradle sync project failed

itemprop="text">

In Android Studio, I simply created a
new project, and it says that:



Gradle project sync failed. Basic
functionality will not work
properly.



I have searched the web
and tried everything, but nothing worked. I have v0.4.6 of Android Studio using Gradle
1.11.



The Error Message
Is:




FAILURE: Build
failed with an exception.

* Where:
Build file
'C:\Users\Vinnie\AndroidStudioProjects\MyFirstAppProject\MyFirstApp\build.gradle' line:
9

* What went wrong:
A problem occurred evaluating
project ':MyFirstApp'.
> Gradle version 1.10 is required. Current version
is 1.11. If using the gradle wrapper, try editing the distributionUrl in
C:\Users\Vinnie\AndroidStudioProjects\MyFirstAppProject\MyFirstApp\gradle\wrapper\gradle-wrapper.properties
to gradle-1.10-all.zip

* Try:

Run with
--stacktrace option to get the stack trace. Run with --info or --debug option to get
more log output.

BUILD FAILED

Total time: 1
mins 7.011 secs

itemprop="text">
class="normal">Answer



The
Android plugin 0.8.x doesn't support Gradle 1.11, you need to use
1.10.



You can read the proper error message in
the "Gradle Console" tab.




EDIT



You need to change
gradle/wrapper/gradle-wrapper.properties file in this
way:



distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-1.10-all.zip



No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...