摘要: 配置 在需要打印日志的文件中添加以下头文件和宏定义 #include <android/log.h> #define LOGD(...) __android_log_print(ANDROID_LOG_INFO, "LOG_TAG", __VA_ARGS__) #define LOGI(...) _ 阅读全文
posted @ 2023-03-06 16:50 JeremyYu 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 一、配置步骤 方式一 在要发布的子模块的 build.gradle 文件中做如下配置: 添加 maven-publish 插件 plugins { id 'com.android.library' id 'maven-publish' } 添加 publish 配置 groupId = 'com.e 阅读全文
posted @ 2023-03-06 16:46 JeremyYu 阅读(573) 评论(0) 推荐(0) 编辑
摘要: v4l2-utils 工具的使用 一、安装 v4l2-utils sudo apt-get install v4l-utils 二、工具的使用 2.1 列出相关的camera设备 v4l2-ctl --list-devices 2.2 列出某个camera的控制参数 该命令可以查看设备所支持的参数, 阅读全文
posted @ 2023-03-06 16:39 JeremyYu 阅读(1726) 评论(0) 推荐(0) 编辑
摘要: deb安装包的制作 介绍 deb包是Debian软件包格式,文件扩展名为.deb。是Debian系统(包含Debian和Ubuntu等)专属安装包格式。 deb包在Linux操作系统中类似于windows中的软件包(exe),几乎不需要什么复杂的编译即可通过鼠标点击安装使用。 制作deb包的核心文件 阅读全文
posted @ 2023-03-06 16:38 JeremyYu 阅读(1203) 评论(0) 推荐(0) 编辑