Skip to content

Instantly share code, notes, and snippets.

@HDBandit
Last active December 7, 2015 19:58
Show Gist options
  • Save HDBandit/801bd6138ed206441a92 to your computer and use it in GitHub Desktop.
Save HDBandit/801bd6138ed206441a92 to your computer and use it in GitHub Desktop.
String audioSystemVersion = "UNKNOWN";
if (myCar != null) {
AudioSystem audioSystem = myCar.getAudioSystem();
if (audioSystem != null) { // the card has audio system.
audioSystemVersion = audioSystem.getVersion();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment