在一个app中启动另外一个app的service

例如:appA要启动appB中的service

步骤一:

appB中service的声明,如图

    android:name="com.appb.BService"
    android:exported="true"//必须
    android:permission="app.custom.permission">//三个属性缺一不可
    
        android:name="android.intent.action.START_B_SERVICE" />//action名字自定义,建议是xx.xx.xx形式
    
步骤二:

自定义权限声明:必须在appBmainfest.xml中的标签外声明

    android:name="app.custom.permission"
    android:protectionLevel="signature" />
android:name="app.custom.permission" />
步骤三:

在appA中声明权限

android:name="app.custom.permission" />
步骤四:

调用:

Intent intent = new Intent();
intent.setPackage("com.appb");
intent.setAction("android.intent.action.START_B_SERVICE");
startService(intent);

完毕!


你可能感兴趣的:(在一个app中启动另外一个app的service)