一、web线上工具网站
1、Android源码查看:
https://www.androidos.net.cn/android/8.0.0_r4/xref
http://androidxref.com/
2、微信公众号、博客等Markdown排版工具:
http://md.aclickall.com/
3、.9图制作工具:
http://inloop.github.io/shadow4android/
4、svg图转换工具:
https://svg2vector.com/
二、Android studio
1、快捷键
https://mp.weixin.qq.com/s/X7CL-Gb_rOCywAW92TFPlg
2、gradle下载
https://services.gradle.org/distributions/
3、Mac超详细入门
https://mp.weixin.qq.com/s/Llc8ehj69L7tLfblsXe9Rw
4、gradle配置
https://www.jianshu.com/p/c11862136abf
5、gradle混淆
https://mp.weixin.qq.com/s/Rr0atgupgoeHOEV3-20WqQ
6、查看APP启动时间
(1)在Android Studio Logcat中过滤关键字“Displayed”,可以看到对应的冷启动耗时日志。
(2)使用adb shell获取应用的启动时间 adb shell am start -W [packageName]/[AppstartActivity全路径]