I was wondering startNativeTracing function only traces information in native function calls.
If I do something like this
Debug.startNativeTracing();
int a = 0;
int b = 0;
int c = 0;
for(int i=0; i < 1000; i++){
a = i;
b = i*i;
c = a*b;
}
Debug.stopNativeTracing();
then am I not going to get any information?
According to documentation it only works on emulator.
Also are you running the emulator with:
If you want to trace the code in real hardware, use
startMethodTracingmethod(but remember that native code is not traced)