Reputation: 851
Just updated to Android Studio beta and having issues with the Gradle plugin update. Here is the error:
Here is the build.gradle file:
And here is the Gradle setup:
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
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