NVIDIA Debug Manager problem

Hi!
I have a problem with breakpoints in debug mode. I use virtual device( NEXUS 7, arm ). Eclipse writes that breakpoint is unresolved and executing is continued, but Eclipse switch on debug mode.

bool var = true;

while ( var )
{
okgame::Log::Info( okgame::WorkTag, “Working…” ); // Breakpoint
}

Application fully native. Without nvidia includes, libs.
What i do wrong?

P.S.Sorry for my English.

Check debug configuration of you debug launching. Check “Debugger\Shared Libraries”, see whether or not the path where you unstripped .so are in.
For a normal native application, it’s \obj\local\arm-eabi-v7a.
Check whether or not your native part is build with “ndkbuild NDK_DEBUG=1”.