A small code snippet which makes Integration across the android apps easy.
Try calling a Implicit Intent with the below intent info, you can see yourself that your app is now integrated with the Navigation.
Uri IntentUri = Uri.parse(“google.navigation:q=” + latitude + “,” + longitude);
Intent mapIntent = new Intent(Intent.ACTION_VIEW, IntentUri);
startActivity(mapIntent);
Happy coding 🙂