Open GcsSloop opened 8 years ago
存在中文注释,且编码为utf-8。
指定编译字符集为utf-8。
在所在项目之下的build.gradle中添加:
tasks.withType(JavaCompile) { options.encoding = “UTF-8” }
注:由于Gradlev2.2.1的升级,语法不向下兼容。之前解决这个问题的方法是添加:
tasks.withType(Compile) { options.encoding = “UTF-8” }
学习了
can not solve my problem. i tried this paraph in all build.gradle,but no effect.can you help me ?
产生原因:
存在中文注释,且编码为utf-8。
解决方案:
指定编译字符集为utf-8。
在所在项目之下的build.gradle中添加:
tasks.withType(JavaCompile) { options.encoding = “UTF-8” }
注:由于Gradlev2.2.1的升级,语法不向下兼容。之前解决这个问题的方法是添加:
tasks.withType(Compile) { options.encoding = “UTF-8” }