Google Maps Launch the Application
When I push the button, how will I be able to launch the Google application? My application crashes when I launch it. I'm working with Kotlin. Below is the sample of the code. Thank you
launch_button = findViewById(R.id.button1)
launch_button.setOnClickListener(object: View.OnClickListener{
override fun onClick(view: View?){
val mapIntent = Intent(Intent.ACTION_VIEW,
Uri.parse("google.navigation:q=22.659239,88.435534&mode=1"))...