I'm trying to open Spotify on Android Auto and reproduce a specific song.
Using the code below I'm opening Spotify on the phone, but I need to open it on the Car directly.
final Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("spotify:track:" + spotifyId));
intent.setPackage("com.spotify.music");
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(intent);
Does anybody know what's the Intent to open Spotify on Android Auto?