public final class ExoPlayerLibraryInfo
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
static boolean |
ASSERTIONS_ENABLED
Whether the library was compiled with
Assertions
checks enabled. |
static java.lang.String |
TAG
A tag to use when logging library information.
|
static boolean |
TRACE_ENABLED
Whether the library was compiled with
TraceUtil
trace enabled. |
static java.lang.String |
VERSION
The version of the library expressed as a string, for example "1.2.3".
|
static int |
VERSION_INT
The version of the library expressed as an integer, for example 1002003.
|
static java.lang.String |
VERSION_SLASHY
The version of the library expressed as
"ExoPlayerLib/" + VERSION. |
| Modifier and Type | Method and Description |
|---|---|
static java.lang.String |
registeredModules()
Returns a string consisting of registered module names separated by ", ".
|
static void |
registerModule(java.lang.String name)
Registers a module to be returned in the
registeredModules() string. |
public static final java.lang.String TAG
public static final java.lang.String VERSION
public static final java.lang.String VERSION_SLASHY
"ExoPlayerLib/" + VERSION.public static final int VERSION_INT
Three digits are used for each component of VERSION. For example "1.2.3" has the
corresponding integer version 1002003 (001-002-003), and "123.45.6" has the corresponding
integer version 123045006 (123-045-006).
public static final boolean ASSERTIONS_ENABLED
Assertions
checks enabled.public static final boolean TRACE_ENABLED
TraceUtil
trace enabled.public static java.lang.String registeredModules()
public static void registerModule(java.lang.String name)
registeredModules() string.name - The name of the module being registered.