1.c++api网址
http://www.cplusplus.com
2.protocbuf
官方开发文档 https://developers.google.com/protocol-buffers/docs/proto
源码github网址 https://github.com/google/protobuf
3.Android源码
http://androidxref.com
4.stetho在Chrome调试Android网络&数据库
https://www.jianshu.com/p/03da9f91f41f
5.kotlin学习大全
https://juejin.im/post/591dd9f544d904006c9fbb96
6.查询设备分辨率(Android&IOS)
http://screensiz.es
7.Android框架architecture component
https://developer.android.com/topic/libraries/architecture/adding-components.html
8.LeakCanary内存泄露检查工具
https://www.jianshu.com/p/87f2ba180066
9.Android多渠道打包
https://github.com/Meituan-Dianping/walle
10.tensorflow
tensorflow官网 https://www.tensorflow.org/?hl=zh-cn
tensorflow官方文档中文版 http://wiki.jikexueyuan.com/project/tensorflow-zh/
11.tensorflow在android平台的移植
http://talkingdata.me/2016/10/18/Android_Tensorflow/?nsukey=LPGmVZ739QjDP4HVykMeHYjc81an2ZEhg0mmnyHRJB22zQFhSo6tx3bXl1canK%2By0eq84i0CBEDktL1NeA9TZvw4CuiXmqIYq06Do%2BsHYTJE7prCT7QuA1nllLmmxkoTXkpzx96jeB1DLvDjYSBsLgYvv7THDMd%2FpPKvNH74eMO6kLRdWfo5TqmLhY6QiNs%2F
12,绘制线段,默认线段两端就是圆角的。
mPaint.setStrokeCap(Paint.Cap.ROUND);
13,Android第三方库查询网站:
14,获取cpu信息
adb shell getprop
adb shell cat /proc/cpuinfo
15,H264码率设置
16,AI自动识别移动应用代码bug:详解Facebook Infer
17,Android-->MediaMuxer,MediaCodec,AudioRecord及Camera实现音频视频混合MP4文件
18,android版本分布
19,图片i420,nv21等数据格式
https://www.jianshu.com/p/e67f79f10c65
20,各种第三方view库
https://www.oschina.net/ios/codingList/367/ios-image?sort=time&p=5
21.https抓包配置
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<debug-overrides>
<trust-anchors>
<certificates src="system" />
<certificates src="user" />
</trust-anchors>
</debug-overrides>
<base-config cleartextTrafficPermitted="true" />
</network-security-config>
22.java序列化优化工具
Fury
guest
deepfinch