Commit 437275ca by gyumin Committed by Oliver Woodman

Implement device info/volume methods

PiperOrigin-RevId: 323544314
parent dc102927
......@@ -40,6 +40,10 @@ public final class DeviceInfo {
/** Playback happens outside of the device (e.g. a cast device). */
public static final int PLAYBACK_TYPE_REMOTE = 1;
/** Unknown DeviceInfo. */
public static final DeviceInfo UNKNOWN =
new DeviceInfo(PLAYBACK_TYPE_LOCAL, /* minVolume= */ 0, /* maxVolume= */ 0);
/** The type of playback. */
public final @PlaybackType int playbackType;
/** The minimum volume that the device supports. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment