#Android 编译错误 Could not determine the dependencies of task ‘:app:compileDebugJavaWithJavac‘

报错信息

Could not determine the dependencies of task ':app:compileDebugJavaWithJavac'.
> Could not create service of type AnnotationProcessorDetector using JavaGradleScopeServices.createAnnotationProcessorDetector().

Could not determine the dependencies of task ':app:compileDebugJavaWithJavac'.
> Could not create service of type AnnotationProcessorDetector using JavaGradleScopeServices.createAnnotationProcessorDetector().
  • Clean、重启AS,都无效

原因分析

#查看详细信息
./gradlew assemble[Variants-Name] --tracestack -info
  • 发现是其他进程在用Gradle,把一个Gradle文件锁了

解决

kill -9 [PID]
  • 根据提示的PID信息,杀掉该进程就可以了


版权声明:本文为shihuayaoshishuo原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。