adminLTE相关:
https://blog.youkuaiyun.com/lxy316316/article/details/90232041
Http相关
HTTP系列 – 注册登录 + Cookie
框架:LayUI AdminLTE metronic
后台管理UI框架选择
https://www.jianshu.com/p/33da2ceee627
ffmpeg相关:
https://www.jianshu.com/p/41095a4e181a
https://github.com/ShiftMediaProject
https://blog.youkuaiyun.com/luckywll/article/details/85792097
https://gitee.com/ztwlla/FFMPEG
https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu
JNI相关
Android JNI 使用
用Jni+jar封装C++库给android调用
AS 使用C++代码生成.so并导入
AS3.5.1生成和调用jar包
NDK中文文档:
Json相关
FastJson w3c 文档
fastjson 的使用总结
FastJson 官方链接
FastJson下载地址
布局相关:
ConstraintLayout :https://juejin.im/post/5bac92f2f265da0aba70c1bf
openGL ES相关
https://developer.android.google.cn/guide/topics/graphics/opengl.html
Android开发文档
安卓官方培训文档:http://hukai.me/android-training-course-in-chinese/index.html
安卓官方开发文档:https://developer.android.google.cn/docs
资源下载地址:
gradle:http://services.gradle.org/distributions/
宏相关
使用宏识别 linux, windows, android系统(区分大小写),如下:
linux
WINDOWS
ANDROID
例如:
#ifdef ANDROID
#include <sys/sysconf.h>
#else
#ifdef linux
#include <sys/sysctl.h>
#endif