Stop killings apps on HiSense U30 (HLTE720E): Difference between revisions

From Notes to self
Jump to navigation Jump to search
No edit summary
No edit summary
Line 3: Line 3:
A workaround was found in https://android.stackexchange.com/questions/216299/something-killing-background-apps.
A workaround was found in https://android.stackexchange.com/questions/216299/something-killing-background-apps.


It is as follows:
* Install [https://termux.com Termux] and [https://wiki.termux.com/wiki/Termux:Widget Termux: Widget] from F-Droid or Google Play.
* Creat the script <code>.shortcuts/stop-killer</code><p>
#!/data/data/com.termux/files/usr/bin/sh
am stopservice com.android.systemui/com.hmct.systemui.taskmanager.detectmemory.MemoryDetectService
sleep 3</p>
[[Category: Phones]]
[[Category: Phones]]

Revision as of 19:53, 9 November 2019

The producer of HiSense U30 (HLTE720E) added to SystemUI the "memory detect service", which kills almost all background programs. The white list includes a few apps from major companies, for example, Whatsapp, Skype, Viber, Slack. However, Telegram, Skype Lite, Yandex.Weather, and everything else are killed in a couple of minutes after start. Notifications don't work.

A workaround was found in https://android.stackexchange.com/questions/216299/something-killing-background-apps.

It is as follows:

  • Install Termux and Termux: Widget from F-Droid or Google Play.
  • Creat the script .shortcuts/stop-killer

  1. !/data/data/com.termux/files/usr/bin/sh

am stopservice com.android.systemui/com.hmct.systemui.taskmanager.detectmemory.MemoryDetectService

sleep 3