Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get the reason for process start in android program?

I can see some log like this:

 Start proc com.**.** for activity com.**.**/com.**.**: pid=11091 uid=10146 gids={50146, 3003, 1028, 1015} by log Tag ActivityManager. 

So, I want to know, how can i get the activity's class name in the process

like image 545
wind Avatar asked Sep 14 '25 13:09

wind


1 Answers

If I understand your question, in that same line you have the full name of the Activity class:

for activity com../com..****:

Is not that what you are looking for?

like image 58
pconcepcion Avatar answered Sep 16 '25 05:09

pconcepcion