Service being killed while holding wake lock and after calling startForeground

后端 未结 1 549
礼貌的吻别
礼貌的吻别 2020-12-29 17:10

I am having a problem where my service is being killed even though I am holding a wake lock and I have called startForeground. When this occurs the tablet (

相关标签:
1条回答
  • 2020-12-29 17:30

    I am having a problem where my service is being killed even though I am holding a wake lock and I have called startForeground.

    startForeground() reduces the likelihood of a service being killed, but it does not prevent it.

    The app I am developing is a chat client and needs a constant connection, it is also plugin based, so my app is developed as such: Client - HostService - Multiple child 'Services'.

    I recommend getting rid of one of those layers. Even if the OS doesn't shut you down, many users will (e.g., task killer, Running Services in Settings), considering you to be running too many services.

    If the client itself is open the issue does not occur, but the model I am going for is that the user can use the device and stay connected (receiving messages etc) without having the client itself open at all times.

    I recommend making that optional. You may think it's sexy. Some of your users will attack you for wasting their battery.

    Can anybody offer any explanation as to why the service is being killed in this way, and if so prevent it from happening?

    I'd start by getting rid of android:process=":remote". You don't need it. You don't want it. You may be hurting yourself by having it, as it may accelerate Android's interest in getting rid of your service. You absolutely are hurting users by having it, because you are wasting RAM for no good reason.

    Then, I'd get rid of the plugins, if you implemented those as separate applications. In that case, each one of those will be running in its own process, wasting yet more RAM. Besides, your current implementation would be flawed, as you would be stuck having your service be named com.mydomain.chatClient.server.HostService until the end of time, since you didn't use an <intent-filter> to separate the concerns of "what the service is named internally" and "what the service is called by other separately-installed applications that wish to use it". And if you didn't implement the plugins as separate applications, then I fail to see the value in having them be in separate services, rather than folding them all into the one service.

    Also, if anybody is aware of a way to keep a socket connection open continuously without holding a wake lock for the entire connection duration, I would love to hear it!

    If the socket is on wireless data, instead of WiFi, you do not need a WakeLock all the time. The socket will remain open, and incoming packets on that socket will wake up your code. At that point, you'd want to grab a WakeLock long enough for you to do whatever you're doing with the data when it arrives, then release the WakeLock.

    If you are on WiFi, though, this trick doesn't work, so a WakeLock (and probably a WifiLock) will be required.

    0 讨论(0)
提交回复
热议问题