Every time I reboot my HTC One M8 Google Play Edition running 6.0 Marshmallow, there is a toast message that reads 'Authorization Failed' with no other information on what actually failed.
Any idea what is causing this so I can fix it?
Every time I reboot my HTC One M8 Google Play Edition running 6.0 Marshmallow, there is a toast message that reads 'Authorization Failed' with no other information on what actually failed.
Any idea what is causing this so I can fix it?
Improvising Firelord's comment, if you are using Linux, execute in terminal
adb shell dumpsys window > log.txt
and then,
cat log.txt | grep 'TOAST'
Now, you can find the package name and app causing the problem.
dumpsys window
doing here. Also, the command can also be adb shell dumpsys window | grep "TOAST_WINDOW"
. Even then, where is the package name? Show it as an example. Then again, it is the package name and not the app name. How do I find out what's the app name?
– Firelord
Nov 18 '15 at 18:25
adb shell dumpsys window
and look for the stringTOAST
(possiblyTOAST_WINDOW
)... – Firelord Nov 13 '15 at 12:04