Execution failed for task ‘:xxx:compileReleaseJavaWithJavac’.
我出现这个问题的原因是:‘xxx’library在dependencies中引用了’B’ lib库,‘B’ lib库dependencies中是这样写的 “implementation fileTree(dir: ‘libs’, include: [‘.jar’, '.aar’])”:其他lib访问不到B .jar .aar 包,implementation 换成 api 就好了,因为自己的粗心找了很长时间。记录一下。
敲打敲打自己。