标签: android service
我有一项服务,我在主要活动中用
startService(new Intent(getBaseContext(), AlarmService.class));
如果我更改AlarmService类然后更新我的应用程序,那么当我启动新服务时,旧服务是否仍在运行?
我每次更新应用时都会害怕创建多项服务。