Alex Meyer
Alex Meyer

Reputation: 851

Android Studio Gradle Plugin

Just updated to Android Studio beta and having issues with the Gradle plugin update. Here is the error:

enter image description here

Here is the build.gradle file:

enter image description here

And here is the Gradle setup:

enter image description here

I have tried uninstalling/reinstalling, I've tried reimporting the project, I've tried using different versions of Gradle all with no success and the same error.

I was skeptical to update to the Android Studio beta as most of the other updates have broken builds but at IO the Google team promised more stable releases. So far not so much! I would like to get back to developing but I've been dealing with this. Any ideas would be much appreciated!

Upvotes: 0

Views: 159

Answers (1)

Viet Nguyen
Viet Nguyen

Reputation: 142

change 'classpath 'com.android.tools.build:gradle:0.11.+'' to 'class 'com.android.tools.build:gradle:0.12.+''

I think I did this manually and then sync the Gradle files again. Should work.

Upvotes: 1

Related Questions