Skip to main content

The Gradle Nightmare in Android Studio

The Gradle Nightmare in Android Studio


 This is a relatively common message in Android Studio if you dare to touch Gradle:

11:13 PM    Gradle sync failed: Minimum supported Gradle version is 3.3. Current version is 2.2. If using the gradle wrapper, try editing the distributionUrl in C:\Users\Acer Aspire\AndroidStudioProjects\MyApplication\gradle\wrapper\gradle-wrapper.properties to gradle-3.3-all.zip
                    Consult IDE log for more details (Help | Show Log)


 I have installed Gradle in c:\gradle and configured Android Studio File->Settings->Build, Excution ..->Gradle to point to this installation. 

If you try to rebuild the project, you still get:

Error:Could not find com.android.tools.build:gradle:3.5.0.
Searched in the following locations:
    file:/C:/Program Files/Android/Android Studio2/gradle/m2repository/com/android/tools/build/gradle/3.5.0/gradle-3.5.0.pom
    file:/C:/Program Files/Android/Android Studio2/gradle/m2repository/com/android/tools/build/gradle/3.5.0/gradle-3.5.0.jar
    https://jcenter.bintray.com/com/android/tools/build/gradle/3.5.0/gradle-3.5.0.pom
    https://jcenter.bintray.com/com/android/tools/build/gradle/3.5.0/gradle-3.5.0.jar
Required by:
    project :


The question is: How come Androd Studio ignores my Gradle settings and sets off to Karura forest to look for gradle installations?? 

It seems Gradle refactoring is non-existent in Android Studio, hence, upgrade at you own risk You could spend the rest of your life sorting out the resulting mess.

Comments

  1. I have the same problem and I cannot fix the issue. Glad someone is sharing the pain!

    ReplyDelete

Post a Comment

Popular posts from this blog

How to Install RIOT Plugin for GIMP

How to Install RIOT Plugin for GIMP::  Since this article was first written a stand-alone version of RIOT has been made available Download the plugin from   http://luci.criosweb.ro/riot/download/   Select the download link titled " RIOT as plug-in for other applications "    Launch the  Riot-plugin.exe  file by double clicking. The installer installs all the files including Riot.exe, Riot.dll, and FreeImage.dll in the location where you installed GIMP  If GIMP is open, close it and re-launch it. To optimise an image, open it then save with menu  File->Save for web with RIOT    You can set the target file size by selecting " Compress to size " button  on bottom right corner of optimised image pane and providing the size in kilobytes. Alternatively you can use a slider provided to allow you to change the quality while showing you a preview of the resulting image. Enjoy .       ...

XUBUNTU PANEL AND WINDOW BUTTONS HAVE DISAPEARED

 XUBUNTU PANELS Xubuntu can be quite troublesome when you shutdown and restart. Desktop panels may disappear as well as window minimize/maximise/close buttons.  The panel is equivalent to the Windows 10 Start menu that provides access to applications. TO MAKE THE PANEL REAPPEAR Open a terminal by right-clicking on the desktop then enter the following: xfwm4 --replace TO RECOVER THE PANEL Open a terminal by right-clicking on the desktop then enter the following: xfCE-panel --restart  That is all . As we say in Kiswahili: Mambo kwisha!

Installing NGINX with PHP and MySQL

My OS: Windows 7 Home Premuim 64bit Software Installed: NGINX 0.9.5 for Windows PHP: php-5.3.5-Win32-VC6-x86.zip MySQL: mysql-5.5.9-winx64.msi NGINX Installation Download from  http://nginx.org/en/download.html Unzip into C:\nginx Change the nginx.conf in C:\nginx\conf as per instructions at http://blog.siteroller.net/set-up-nginx-mysql-and-php-wemp-on-windows See my nginx.conf file  here . Note  that in this example, it is assumed that PHP is installed in C:\nginx\php (unzipped into this folder) and MySQl is installed in C:\Program Files\MySQL PHP Installation After downloading the zip version of PHP (V6, threadsafe, zip), unzip into C:\nginx\php\ Rename  php.ini-production  to  php.ini Make changes to this file as given in at  http://blog.siteroller.net/set-up-nginx-mysql-and-php-wemp-on-windows  but do not expect the line numbers given to match exactly. Activate the extensions  extension=php_...