Samsung Smart Manager reporting slow app but shows information about errors

这一生的挚爱 提交于 2019-12-06 20:04:28

问题


I have an app that Samsung Smart Manager is complaining about. It reports that the app is causing the device to run slowly but then references the number of errors in a week. It's not entirely clear that "errors" in this case actually mean crashes but it's possible as I think this device might have had QA versions of this app installed.

How do I determine anything about why Smart Manager would show this message about my app? And why does it report causing the app to run slow if it's just errors/crashes?

Here is the full message:

"This app is causing your device to run slowly. To improve your device's perfomance, turn off auto open for this app.

41 errors occured in 1 week"


回答1:


After a LOT of searching and investigating I think I've figured it out. Note that this is not definitive but it's the best I can dig up.

It appears that this message is only referring to an app crashing and the app has to crash a certain percentage in order for the notification to show up. So it has nothing to do with causing the device to run slowly...

The algorithm for determining if the notification should show up is something along the lines of:

if(crashes >= ((NumberOfTimesUserLaunched + 1) * 10)) -> Show notification

I don't have any information at the moment as to how it determines how many times the user launches it. (If the app launches at boot that may or may not count towards that number)



来源:https://stackoverflow.com/questions/34402512/samsung-smart-manager-reporting-slow-app-but-shows-information-about-errors

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!