My application calls GooglePlayServicesUtil.isGooglePlayServicesAvailable(context);
from google-play-services.jar
via JNI.
In my Eclipse project everything is OK (so both the JNI part and java code work fine), but when the same code is being called from NSight Tegra project the application just hangs.
In my NSight Tegra project:
[dex] Using Pre-Dexed google-play-services-1cb26df6ef48c628203cda343aaaf971.jar <- <my path here>\Tegra-Android\Debug\libs\google-play-services.jar
isGooglePlayServicesAvailable
in classes.dex
inside the .apkI'll appreciate any suggestions!
Thank you!
Just found the answer!!!
The issue was solved when changed Debug Mode to Native Code. Seems the application stopped somewhere on a hidden breakpoint in java part.