Using the latest Android Studio 3.0 Canary 5
Here's the error:
Error:(1, 1) A problem occurred evaluating project ':app'.
Failed to apply plugin [class 'com.android.build.gradle.api.AndroidBasePlugin'] Android Gradle plugin 3.0.0-alpha5 must not be applied to project [path_to_my_project] since version 3.0.0-alpha5 was already applied to this project
Tried: cleaning, rebuilding, opening/closing. Not working.
any ideas ?
[LATER EDIT] Solution: Migrate to Canary 8+ and all should be ok.
This worked for me:
Deactivate Configuration On Demand
In
gradle.properties
:Then stop the daemon in a terminal window:
Now everything works again.
Versions used:
gradle-4.1-milestone-1
com.android.tools.build:gradle:3.0.0-alpha5
UPDATE
After upgrading to Android Studio 3.0 Beta 2 I can reactivate Configuration on Demand and everything works fine.
I already tried all the solutions including Clean, Rebuild, Invalidate Project
But nothing is working but i figured it out.
For temporary just downgrade your gradle plugin version to stable version
Replace your alpha line with this line. And have fun.. :)
I had the same issue, I closed Android Studio and opened again, I noticed that it automatically applied these changes to the following files and everything worked fine:
build.gradle: changed the class path of Gradle from:
to
gradle-wrapper.properties: from
to
I got the issue and realized the issue related with caches. You have to invalidate caches of Android studio by select File-> Invalidate Caches/Restart. It worked for me. The issue was resolved.
from this thread on reddit: https://www.reddit.com/r/androiddev/comments/6kjl8b/android_studio_30_canary_5_is_now_available/djmuv0o/ killing daemons fixed the problem for me.
Migrating the gradle version from 3.0.0-alpha5 to 3.0.0-alpha7 saved my day !!