There is a mysterious app, 99070
that is consuming power on my Nexus 5X. Any idea how I determine what it is?
There is no option to stop or uninstall it. My phone is a Nexus 5X running stock Android 6.0.
There is a mysterious app, 99070
that is consuming power on my Nexus 5X. Any idea how I determine what it is?
There is no option to stop or uninstall it. My phone is a Nexus 5X running stock Android 6.0.
Possibly right answer:
For such a number over 99000, it is the Unix UID for an isolated sandbox process (u0_i70
).
In Android's UID system, called "AID". Android allocated 1000 special UIDs for isolated sanbox processes, 99000-99999. Some apps use that for security reasons, like Chrome (Incognito mode).
I use OS Monitor from the Play Store to see what's going on: https://play.google.com/store/apps/details?id=com.eolwral.osmonitor&hl=en .
Here's the Help Page that pops up from the APP. http://www.osmonitor.mobi/maunal/index.html
You can view Processes and kill them or see where they connect to (with a Google Maps view of the IP Address - really nice).
I suggest contacting Google right away and have them identify the app. Have them tell you what it's called, what does, why it's on the phone, and if there is any real need for it. If not, get Google to remove it.
You can open the app list from the boot menu & then find the app & then uninstall it... maybe it is an unidentified process in your phone...
ps
with a terminal/adb shell
. E.g. on one of my devices, this shows "514" for "kswapd0", which definitely is no app (but a daemon ;) – Izzy Dec 15 '15 at 19:28ps aux | grep 99070
(or whatever the ID is at the time). Could even tryfind / -name *99070*
orgrep -r 99070 /
. – Matthew Read Mar 11 '16 at 01:24