当前位置: 首页 > article >正文

Android 12.0新增自定义HIDL问题记录

代码

流程和代码可以参考这位大佬的
https://blog.csdn.net/learnframework/article/details/134621556

主要记录发现的问题以及解决方式。

1.首先最外层的bp不要使用update-makefiles.sh 去生成 ,基本上interface下面的文件夹都会被影响,可能会导致编译问题。
bp使用ir目录下面的直接改一下就行了。这里我也贴一下


hidl_interface {
    name: "android.hardware.hidltest@1.0",
    root: "android.hardware",
    srcs: [
        "ITest.hal",
    ],
    interfaces: [
        "android.hidl.base@1.0",
    ],
    gen_java: true,
}

2.然后编译时候的第一个报错
No more HIDL interfaces can be added to Android. Please use AIDL

修改 system/tools/hidl/build/hidl_interface.go:498

allAospHidlInterfaces末尾新增
在这里插入图片描述
“android.hardware.hidltest@1.0”: true,

  1. 第二个报错 If this is a new package, add it to the latest framework compatibility matrix.
    往compatibility_matrix.6.xml和compatibility_matrix.current.xml添加hdil配置。

在这里插入图片描述

  <hal format="hidl" optional="true">
        <name>android.hardware.hidltest</name>
        <version>1.0</version>
        <interface>
            <name>ITest</name>
            <instance>default</instance>
        </interface>
    </hal>

现在可以编译通过了,便于修改后直接编译打包。在device/generic/goldfish/vender.mk添加一下。我这里用的target就是模拟器的
lunch sdk_phone_x86_64

PRODUCT_PACKAGES += \
    android.hardware.audio.service \
    android.hardware.hidltest@1.0-service

最后就是selinux的配置,按照patch来就,由于大佬文章是图片,这里我贴一下新增的文件的内容
system/sepolicy/vendor/hal_hidltest_default.te

type hidltest, domain;
type hidltest_hwservice,hwservice_manager_type;
type hidltest_exec, exec_type, vendor_file_type, file_type;
hwbinder_use(hidltest);
init_daemon_domain(hidltest)
add_hwservice(hidltest, hidltest_hwservice)

allow hidltest hwservicemanager_prop:file {map read open getattr};
allow hidltest system_file:dir {read open getattr search};

最后结果
在这里插入图片描述


http://www.kler.cn/a/418879.html

相关文章:

  • 机器学习算法(六)---逻辑回归
  • Qt 窗口类型、窗口标志和窗口属性
  • 【目标检测】YOLO:深度挖掘YOLO的性能指标。
  • FreeRTOS之vTaskStartScheduler实现分析
  • LabVIEW实现UDP通信
  • 逆向攻防世界CTF系列42-reverse_re3
  • 内网穿透步骤
  • Spring Data JPA(二) 高级进阶
  • linux——进程间通信及管道的应用场景
  • 蓝桥杯经验分享
  • 医院分诊管理系统|Java|SSM|VUE| 前后端分离
  • 2. STM32_中断
  • 深入理解 PyTorch .pth 文件和 Python pickle 模块:功能、应用及实际示例
  • 前端学习week8——vue.js
  • 支持向量机算法:原理、实现与应用
  • LeetCode题解:34.在排序数组中查找元素的第一个和最后一个位置【Python题解超详细,二分查找法、index法】,知识拓展:index方法详解
  • [MySQL]流程控制语句
  • SpringCloud书单推荐
  • 深度学习常见数据集处理方法
  • 爬虫专栏第一篇:深入探索爬虫世界:基础原理、类型特点与规范要点全解析
  • npm : 无法加载文件 D:\nodejs\npm.ps1,因为在此系统上禁止运行脚本
  • 云技术基础(泷羽sec)
  • ubuntu配置网络
  • 【论文投稿】国产游戏技术:迈向全球引领者的征途
  • 缓存算法FIFO的说说
  • 单片机蓝牙手机 APP