移动开发指定Android Studio编译工程时的源文件编码 云博小周宇2024年5月5日2023年9月2日1 Min Read 统一设置为UTF8编码在工程的根目录下的build.gradle文件中,添加定义。tasks. withType(JavaCompile) { options.encoding = “UTF-8”} 如图: