android Studio Crunching Cruncher

今天pull代码下来用死丢丢打开报了这样的一个错误:

FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':library:mergeDebugAndroidTestResources'.
> Crunching Cruncher indicator_arrow.png failed, see logs
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

log提示里面有说是编码的问题,改了后并没有什么用

在网上搜索了一番,说是点9图片命名的问题,然后在报错的module里的gradle文件加上下面的配置:

.cruncherEnabled = aaptOptions.useNewCruncher =

这个在编译的时候不去检测点9文件名的合法性,然后设置后,build确实通过了,但是出现这个问题的最终问题还是没找到,然后我仔细看了一下,发现我project目录中有个文件名是中文的,然后我就改了一下,发现即使没有设置上面的也没有问题。

总结:

用国外的东西,其他的也会有这样的限制,所以大家还是不要用中文去命名文件目录名了。

你可能感兴趣的:(android,Studio,Crunching,Cruncher)