Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Studio 1.0RC4 Gradle build error

I just downloaded Android Studio 1.0RC4 and I can't build any project, even newly created ones.

The error I got is:

Error:Could not run build action using Gradle distribution 'https://services.gradle.org/distributions/gradle-2.2.1-all.zip'.

I was able to download the zip from the browser but it's not working on AS. This is my build.gradle file:

// Top-level build file where you can add configuration options common to all sub-projects/modules.


buildscript {

    repositories {
        jcenter()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:1.0.0-rc1'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

Module build file:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 19
    buildToolsVersion "19.1.0"

    defaultConfig {
        applicationId "simple.com.car10"
        minSdkVersion 14
        targetSdkVersion 19
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
}

Graddle-wrapper.properties

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

I Tried to run graddle - build from cmd, and I got this error:

FAILURE: Build failed with an exception.

* What went wrong:
Build file 'C:\Users\Giovanni\uild' does not exist.

* 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: 3.093 secs

JDK: 1.8.0_05

When I hit try again nothing happens, I already tried uninstalling everything and installing again but it didn't work.

Any ideas guys? Thanks.

like image 755
Moondustt Avatar asked Dec 08 '14 12:12

Moondustt


People also ask

What is Gradle error in Android Studio?

In some cases when your Gradle files are deleted or corrupted you will not be able to download new Gradle files in android studio. In this case, we have to delete the Gradle files which are present already and then again sync your project to download our Gradle files again.

What is build type in Gradle in Android Studio?

Build types define certain properties that Gradle uses when building and packaging your app, and are typically configured for different stages of your development lifecycle. There are two build types defined by default, debug and release , and you can customize them and create additional build types.

What is COM Android tools build Gradle for?

As the name suggest, "Android Build Tools" is a command line tools for building your Java source code (along with all the related assets) into executable APK file. It's located at your Android SDK directory (usually at $ANDROID_HOME ) and can be updated using Android SDK manager (accessible via Android Studio IDE).


2 Answers

I finally got it working guys

I had to delete the .gradle folder in 'C:\Users\Username\' and then I opened AS with admin rights and it came back to life!

Thanks everyone.

like image 117
Moondustt Avatar answered Oct 05 '22 18:10

Moondustt


you can probably drop the RC-1 in your build.gradle:

classpath 'com.android.tools.build:gradle:1.0.0'

Here's a checklist of things that have changed recently

http://tools.android.com/tech-docs/new-build-system/migrating-to-1-0-0

like image 23
Tyson Miller Avatar answered Oct 05 '22 18:10

Tyson Miller