在项目的开发中 经常会遇到延迟 卡顿的情况 这种场景下 往往要通过启动AndroidStudio profile工具来查看各类方法的耗时 比较费劲 今天给大家带来一个方便的方法 只需要通过日志查看就可以具体看到运行
先看效果
可以看到:在输入Tag后 具体哪一个类的方法和 耗时都可以一目了然
使用方法:
在项目的gradle下
dependencies{
classpath'com.fly.plugin:lightplugin:1.0'
}
并添加本地调试的库
repositories{
google()
jcenter()
maven{ url uri('release')}
}
在插件Module下的gradle了下
uploadArchives{
repositories{
mavenDeployer{
pom.groupId ='com.fly.plugin'
pom.artifactId ='lightplugin'
pom.version =1.0
repository(url: uri('../release'))
}
}
}
最后在app下的gradle添加以下插件
applyplugin:'com.fly.plugin'
插件中主要运用了AOP插桩 工具为JavaAssist 同时支持Jar包的插桩 本人已成功调试 具体可看github 下面贴上关键的代码
转发请标明出处 万分感谢