目 录CONTENT

文章目录

检测Android Studio Project的编码配置

DevWiki
2017-08-18 / 0 评论 / 0 点赞 / 13 阅读 / 0 字 / 正在检测是否收录...
温馨提示:
本文最后更新于2024-03-31,若内容或图片失效,请留言反馈。 部分素材来自网络,若不小心影响到您的利益,请联系我们删除。

0x01. 在 Project根目录新建 build_check.gradle文件

task checkEncoding () {
    group = 'Build Check'
    description = 'Check Project File Encoding'
    def file = new File("${rootDir}/.idea/encodings.xml")
    if (file.exists()) {
        XmlParser xmlParser = new XmlParser();
        Node node = xmlParser.parse(file)
        println node
        assert node.name() == 'project'
        assert node.@version == '4'
        assert node.component[0].@name == 'Encoding'
        assert node.component[0].file[0].@charset == 'UTF-8'
    } else {
        throw new GradleException("没有找到编码配置文件!")
    }
}

0x02. 在 Projectbuild.gradle文件中添加引用

apply from : 'build_check.gradle'
buildscript {
  
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.3.3'
      

        // NOTE: Do not place your application build_config here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

0x03. 执行 gradle checkEncoding任务查看结果

如果抛出异常,请检查 Project目录下 .idea目录下是否包含 encodings.xml文件

0
  1. 支付宝打赏

    qrcode alipay
  2. 微信打赏

    qrcode weixin
博主关闭了所有页面的评论