Gradle plugin doesn't work in Intellij IDEA (Calculate task graph)?

南楼画角 提交于 2019-12-05 06:47:34

To see the error, click that icon in the upper left corner. It will toggle between console output view and that other view.

The problem was because I used "gradle build" command in the plugin to build the project but in the gradle plugin you don't need to use "gradle" before task.
So, I run "build" command and it is working now.

I was facing the same problem . when I used build.gradle(module.app) the version was different.

       compile 'com.google.firebase:firebase-core:11.0.0'


compile 'com.google.android.gms:play-services-auth:11.0.1'

Build>clean the project I saw the exact problem that was seen when the project was run.

just correct the version then run the project

   compile 'com.google.firebase:firebase-core:11.0.0'


compile 'com.google.android.gms:play-services-auth:11.0.0'

add to your build.gradle. and clean your project. show your task.

repositories {
    mavenCentral()
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!