开发工具

目录

最好的uml工具 astash
pidcat 忽略特定的log tag
查看apk中的方法数和成员变量数, 做瘦身优化时很有用.


最好的uml工具 astash
wangxin@wangxin:~/tool/astah_community$ ./astah

文件保存位置:

/home/wangxin/Documents/数据结构.asta
pidcat 忽略特定的log tag

How to use:

1. export PIDCAT_IGNORED_TAGS="ProgressBar;dalvikvm;dalvikvm-heap"
2. ~/src/github/pidcat-master$ ./pidcat_ignore_tag.py com.qihoo.browser
查看apk中的方法数和成员变量数, 做瘦身优化时很有用.
wangxin@wangxin:~/tool/android-sdk-linux/build-tools/25.0.2$ ./dexdump -f ~/Desktop/holaBrowser-debug.apk | grep method_ids_size
method_ids_size     : 12564
wangxin@wangxin:~/tool/android-sdk-linux/build-tools/25.0.2$ ./dexdump -f ~/Desktop/holaBrowser-debug.apk | grep field_ids_size
field_ids_size      : 4166

你可能感兴趣的:(开发工具)