错误信息:

Android Studio解决 Unable to resolve dependency for ':[email protected]/compileClasspath': Could not resolv......
error.png

解决办法:

将依赖代码

    implementation project(path: ':module1')
    implementation project(path: ':module2')

修改如下:

    implementation project(path: ':module1', configuration: 'default')
    implementation project(path: ':module2', configuration: 'default')

相关文章:

  • 2021-07-12
  • 2021-08-14
  • 2021-03-30
  • 2022-01-11
  • 2021-04-27
  • 2021-05-20
  • 2021-08-13
  • 2021-04-22
猜你喜欢
  • 2021-11-08
  • 2021-06-17
  • 2021-12-29
  • 2021-07-10
  • 2021-10-09
相关资源
相似解决方案