Monday, 19 August 2013

Step by step implementation of ndk in my app

http://software.intel.com/en-us/articles/using-the-android-x86-ndk-with-eclipse-and-porting-an-ndk-sample-app

Tuesday, 6 August 2013

LocationClient.connect() give an error for immedate requestupdate calling

LocationClient.connect() is asynchronous. You can't immediately start using the client methods until connection is complete. You should call requestLocationUpdates inside the onConnected callback (or at least after the callback has been called).