How to keep my app service keep running even if app is closed from task manager in MI phone

后端 未结 3 813
-上瘾入骨i
-上瘾入骨i 2020-12-06 02:48

My app has background service which keep on running even if app is killed from the task manager but when I have tested my app on MI(xiaomi) phone it kills my app service whe

相关标签:
3条回答
  • 2020-12-06 02:50

    you are not able to do that from code until and unless there is some api from xiaomi that gives you access to that functionality. I am guessing auto start manager is an app( with privileges of that of a system app, since part of xiaomi modified os) , hence not possible.

    But if the device is rooted you can actually disable autostart manager.

    Still whatsapp , facebook and many more apps doing this may be because of they have tie ups with Xiaomi to be in the whitelist. But its just a guess.

    0 讨论(0)
  • 2020-12-06 02:55

    You should select release build variant from android studio because MI has disabled debugging mode.

    0 讨论(0)
  • 2020-12-06 03:04

    MIUI has a built-in Security app. In the Security app there is a 'Autostart' section, where the user can configure which app can and which app can't run on startup. Your application is disabled default. You need to enable your app and also enable permission manager from permission section.

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