Can anyone provide me with how to launch Google Latutide (just to the main screen of it) via an intent from another application in android?
Thanks, I managed to do it like this...
Intent intent = new Intent();
intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.LatitudeActivity");
startActivity(intent);