Android Studio 疑难问题解决方法总结

 

1.Android Studio解决 Unable to resolve dependency for ':app@debug/compileClasspath': Could not resolve project : xxxx

    将依赖代码

implementation project(path: ':module')

 修改如下:

implementation project(path: ':module', configuration: 'default')

你可能感兴趣的:(Android,AndroidStudio)