当前位置:   article > 正文

Android源码开发记录-自定义系统服务和jar包生成_android jar 打包aidl文件

android jar 打包aidl文件

 

在系统开发中,尤其是自定义系统,必然要封装一些系统方法供第三方开发应用使用。
1.自定义系统服务
除frameworks自定义服务(本文内容),也可以额外写个service+aidl应用
2.jar包生成供第三方应用使用

开发环境
RK平台5.1Android系统

一、添加系统服务

1、创建服务接口aidl文件

创建文件 IMyApiService
文件路径 frameworks/base/core/java/android/os/

  1. package android.os;
  2. interface IMyApiService{
  3. Integer getSum(Integer data1,Integer data2);
  4. }

定义了一个计算和的方法。

2、aidl文件加入Android.mk编译

在frameworks/base/Android.mk
LOCAL_SRC_FILES最后加入

core/java/android/os/IMyApiService.aidl \

3、创建service文件

创建文件 MyApiService.java
文件路径 frameworks/base/core/java/com/android/server/

  1. package com.android.server;
  2. import android.os.RemoteException;
  3. import android.os.IMyApiService;
  4. import android.util.Log;
  5. import android.content.Context;
  6. public class MyApiService extends IMyApiService.Stub{
  7. private String TAG = "MyApiService";
  8. private Context mContext;
  9. public MyApiService(Context context){
  10. mContext = context;
  11. }
  12. @Override
  13. public Integer getSum(Integer data1,Integer data2)throws RemoteException{
  14. return data1+data2;
  15. }
  16. }

实现aidl的接口,计算参数和。

4、自定义service加入SystemServer启动项

(1)Context添加服务名
文件路径 frameworks/base/core/java/android/content/Context.java
添加

public static final String MY_API_SERVICE = "my_api_service";

(2)添加启动服务
文件路径 frameworks/base/services/java/com/android/server/SystemServer.java
在startOtherServices方法中添加

  1. Slog.i(TAG, "Init MyApiService");
  2. try{
  3. ServiceManager.addService(Context.MY_API_SERVICE ,new MyApiService(context));
  4. }catch(Throwable e){
  5. Slog.e(TAG, "Failure starting MyApiService", e);
  6. }

5、创建Manager文件

创建 MyApiManager.java文件
文件路径 frameworks/base/core/java/android/app/

  1. package com.android.app;
  2. import android.util.Log;
  3. import android.os.IMyApiService;
  4. import android.content.Context;
  5. public class MyApiManager{
  6. private String TAG = "MyApiManager";
  7. private Context mContext;
  8. private IMyApiService mService;
  9. public MyApiManager(Context context,IMyApiService service){
  10. mContext = context;
  11. mService = service;
  12. }
  13. public Integer getSum(Integer data1,Integer data2){
  14. try{
  15. return mService.getSum(data1,data2);
  16. }catch(Exception e){
  17. Log.e(TAG,"error getSum "+e.toString());
  18. e.printStackTrace();
  19. }
  20. return null;
  21. }
  22. }

6、注册到SystemService

文件路径 frameworks/base/core/java/android/app/ContextImpl
添加registerService

  1. registerService(MY_API_SERVICE, new ServiceFetcher() {
  2. public Object createService(ContextImpl ctx) {
  3. IBinder b = ServiceManager.getService(MY_API_SERVICE);
  4. return new MyApiManager(ctx,IMyApiService.Stub.asInterface(b));
  5. }
  6. });

7、重新编译源代码

记住make update-api
编译打包完成后,烧写新的固件。

二、生成jar包

jar主要为了在android studio编译环境中MyApiManager报错导致编译不通过问题。
也可以导入frameworks jar包或使用反射。

1、新建JAR包文件夹

在源码目录packages/app下新建MyJar文件夹
并新建目录com/myapi/(包名)

2、新建MyApi.java

在目录com/myapi/新建文件MyApi.java

  1. package com.myapi;
  2. import android.app.MyApiManager;
  3. import android.content.Context;
  4. public class MyApi{
  5. private MyApiManager myApiManager;
  6. public MyApi(Context context){
  7. myApiManager= (MyApiManager) context.getSystemService(Context.MY_API_SERVICE);
  8. }
  9. public int getSum(int data1,int data2){
  10. return myApiManager.getSum(data1,data2);
  11. }
  12. }

3、新建Android.mk

  1. LOCAL_PATH:= $(call my-dir)
  2. include $(CLEAR_VARS)
  3. LOCAL_MODULE_TAGS := optional
  4. LOCAL_SRC_FILES :=com/myapi/MyApi.java
  5. LOCAL_MODULE :=Myapi
  6. include $(BUILD_STATIC_JAVA_LIBRARY)

具体Android.mk语法这里不做解释,可以自行查阅

3、编译生成jar文件

在MyApi目录下直接运行mm编译命令(记得先source build/envsetup.sh)
待编译完成后,jar生成目录
out/target/common/obj/JAVA_LIBRARIES/Myapi_intermediates/javalib.jar
可更改为其他名称。

3、在应用中使用jar包方法即可

  1. MyApi myApi = new MyApi (this);
  2. Log.d(TAG,"getSum="+myApi .getSum(2,5));
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/272992
推荐阅读
相关标签
  

闽ICP备14008679号