开篇废话
今天在用DataBinding编译时候突然出现了这个问题,在网上也查了查,好像使用多个module才会出现这个问题。
开始解决 编译时出现java.nio.file.NoSuchFileException异常
先看我出现的异常代码
Error:Execution failed for task ':cframework:transformClassesAndResourcesWithPrepareIntermediateJarsForDebug'.
> failure, see logs for details.
Error reading contents of F:\fighting\Android\MoXingVoice\cframework\build\intermediates\data-binding-compiler\debug\dependent-lib-artifacts directory java.nio.file.NoSuchFileException: F:\fighting\Android\MoXingVoice\cframework\build\intermediates\data-binding-compiler\debug\dependent-lib-artifacts
at sun.nio.fs.WindowsException.translateToIOException(WindowsException.java:79)
at sun.nio.fs.WindowsException.rethrowAsIOException(WindowsException.java:97)
解决过程
后面还有很多,很长很长,不过不重要,重要的是看这个里面找到重点,去搜索。
我先是搜索transformClassesAndResourcesWithPrepareIntermediateJarsForDebug,没有结果。
后来我观察后面的Error,发现中间提示说java.nio.file.NoSuchFileException,然后我就搜索DataBinding NoSuchFileException,然后搜索到了答案。
解决办法
删除app和module的所有build文件夹,就可以解决了。
多个module之间,他们生成的layout。名称绝对不能一样。不然会出现上面的一系列问题。
写在后面
会搜索也很重要,要先读原来的问题,然后去搜索重要的源头。