Using the following I'm able to control Play, Stop, Pause, ect of the default music player on Android through musicservicecommand. How would I go about playing a specific track instead on the default player? I have both the track ID and the path, I just don't know how to execute it.
Intent i;
Context context=this.cordova.getActivity().getApplicationContext();
i = new Intent("com.android.music.musicservicecommand");
i.putExtra("command", action);
context.sendBroadcast(i);
callbackContext.success("Executed Music Control Cmd: "+action);