美文网首页
Android 查看项目的方法数

Android 查看项目的方法数

作者: 天神Deity | 来源:发表于2018-09-20 15:29 被阅读44次

    项目build.gradle中配置

    classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.6.1'// 项目根目录build.gradle配置代码
    

    在module中配置

    apply plugin: 'com.getkeepsafe.dexcount'//在项目build.gardle中配置代码
    

    在打包时就可看到方法使用情况了

    Total methods in app-release.apk: 58685 (89.55% used)
    Total fields in app-release.apk:  34455 (52.57% used)
    Methods remaining in app-release.apk: 6850
    Fields remaining in app-release.apk:  31080
    

    你也可以在build>outputs>dexcount>release.txt中查看具体详情

    使用详情

    相关文章

      网友评论

          本文标题:Android 查看项目的方法数

          本文链接:https://www.haomeiwen.com/subject/wtlnnftx.html