Hello, I am trying to start Google Maps activity like this:
Intent start = new Intent(Intent.ACTION_VIEW, Uri.parse("geo:"+58.0+","+58.0));
startActivity(start);
But I am getting activity not found exception.
Do I have to declare Google Maps Activity? Any help is appreciated thanks.