Skip to content Skip to sidebar Skip to footer

Updating Android Studio To Version 0.4.0. Nothing Works! Which Fixes?

I've made some waste code. After some mistakes I checkout latest commit. I expected to restart with any without any hitch. But building project now I receive the message: Waiting f

Solution 1:

You have updated to Android Studio 0.4.0

it requires gradle plugin 0.7.+ and gradle-wrapper 1.9.

Change your build.gradle

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.7.+'
    }
}

Then change your gradle-wrapper.properties:

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

Then sync your project with gradle files. Launch gradlew clean to clean your build.

Solution 2:

It's because you updated your Android Studio to version 0.4.0.

Follow those steps to make it work :

http://tools.android.com/recent/androidstudio040released

Post a Comment for "Updating Android Studio To Version 0.4.0. Nothing Works! Which Fixes?"