Can someone give me an ide about method coverage in android apks without having the source code?
I heard that there is an android specific version of emma project that can give method coverage information through instrumentation. But if I do not have the source code how can I instrument th code?
My goal is to some how get a report on which methods were called in the runtime while running the application.
You don’t need emma to get a report of which methods are called.
Just:
and you’ll get a report like this one:
See the details at http://developer.android.com/tools/debugging/debugging-tracing.html