安卓系统源码添加自己的可执行文件到system/bin目录

1、找到路径源码路径 external 下面添加一个hello文件夹

2、添加 Android.mk文件,写入代码

LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_CFLAGS += -Wno-unused-const-variable -Wno-unused-variable -Wno-unused-parameter
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE := hello
LOCAL_SRC_FILES := $(call all-subdir-c-files)
include $(BUILD_EXECUTABLE)

3、添加 hello.c文件

写入代码

#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
printf("hello word \n");
return 0;
}

4、打开终端,cd 安卓系统源码路径,

然后. build/envsetup.sh   

lunch

选择序号

然后 mmm ./external/hello 编译。

make编译打包进系统

  1. adb shell
  2. cd /system/bin
  3. ./hello

 

完成。。。

参考

https://blog.csdn.net/xipiaoyouzi/article/details/40144233

安卓系统源码添加自己的可执行文件到system/bin目录

上一篇:解读顶会ICDE’21论文:利用DAEMON算法解决多维时序异常检测问题


下一篇:使用 Python 参与算法竞赛