android 直接启动其他应用的Service
最近在做一个小插件,没有图标没有activity,利用其他APK启动它的service。
直奔主题,插件A,安装插件的应用B.
B安装A后,由于A刚被安装,没有注册广播接收器,这里不考虑AIDL。需求需要在B安装完A后让A的service启动。
代码和启动activity类似。
Intent intent = new Intent(); intent.setComponent(new ComponentName("com.a.b.c", "com.a.b.c.XXService")); intent.setAction(Intent.ACTION_VIEW); startService(intent);
但是需要给com.a.b.c.XXService配置一个属性:
<service android:name="com.a.b.c.XXService" android:exported="true" />
即可。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。