Traceview Doesn't Work
My Android SDK is installed here D:\android-sdk-windows\tools I set all environment variables to tools and platform-tools. When I type traceview to cmd, it reports. C:\Users\HIEUGI
Solution 1:
You need to supply a command-line parameter, the path to the trace log you generated from DDMS or by using Debug.startMethodTracing()
. See the documentation for more about using Traceview.
Solution 2:
try replacing javaCmd="java"
in your tools/traceview
with :
javaCmd="/path/tojava/bin/java"
Post a Comment for "Traceview Doesn't Work"