Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using Tracer For opengl in android debugger

I am trying to get opengl tracer working for android in monitor. When I add the name of the app, I am unable to open the app.

It gives me an error Error while launching application : Starting Intent { .... }

And an error saying unable to resolve intent.

Also I do not have access to source code, so is there any way I can get this runnig

like image 497
manugupt1 Avatar asked Nov 02 '12 10:11

manugupt1


1 Answers

I got the answer to it. The problem with it was I was not using the correct activity.

Now to get the name of the activity, I did a

adb shell dumpsys activity | grep <name of the application>

while focussing over the required activity.

By doing this I got the name of the activity, which I used in GLTracer. Once I was able to do so, I could collect trace logs

like image 153
manugupt1 Avatar answered Oct 02 '22 09:10

manugupt1