docs/doc/reference/com/google/android/exoplayer2/ExoPlayerLibraryInfo.html
Package com.google.android.exoplayer2
[@Deprecated](https://developer.android.com/reference/java/lang/Deprecated.html "class or interface in java.lang")public final classExoPlayerLibraryInfoextends[Object](https://developer.android.com/reference/java/lang/Object.html "class or interface in java.lang")
Deprecated. com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.
Information about the media libraries.
Fields | Modifier and Type | Field | Description |
| --- | --- | --- |
| static boolean | ASSERTIONS_ENABLED |
Deprecated.
Whether the library was compiled with Assertions checks enabled.
|
| static String | TAG |
Deprecated.
A tag to use when logging library information.
|
| static boolean | TRACE_ENABLED |
Deprecated.
Whether the library was compiled with TraceUtil trace enabled.
|
| static String | VERSION |
Deprecated.
The version of the library expressed as a string, for example "1.2.3".
|
| static int | VERSION_INT |
Deprecated.
The version of the library expressed as an integer, for example 1002003.
|
| static String | VERSION_SLASHY |
Deprecated.
The version of the library expressed as TAG + "/" + VERSION.
|
All Methods Static Methods Concrete Methods Deprecated Methods | Modifier and Type | Method | Description |
| --- | --- | --- |
| static String | registeredModules() |
Deprecated.
Returns a string consisting of registered module names separated by ", ".
|
| static void | registerModule(String name) |
Deprecated.
Registers a module to be returned in the registeredModules() string.
|
-
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
public static final[String](https://developer.android.com/reference/java/lang/String.html "class or interface in java.lang")TAG
Deprecated.
A tag to use when logging library information. See Also:Constant Field Values
-
public static final[String](https://developer.android.com/reference/java/lang/String.html "class or interface in java.lang")VERSION
Deprecated.
The version of the library expressed as a string, for example "1.2.3". See Also:Constant Field Values
-
public static final[String](https://developer.android.com/reference/java/lang/String.html "class or interface in java.lang")VERSION_SLASHY
Deprecated.
The version of the library expressed as TAG + "/" + VERSION.
See Also:Constant Field Values
-
public static final int VERSION_INT
Deprecated.
The version of the library expressed as an integer, for example 1002003.
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).
See Also:Constant Field Values
-
public static final boolean ASSERTIONS_ENABLED
Deprecated.
Whether the library was compiled with Assertions checks enabled.
See Also:Constant Field Values
-
public static final boolean TRACE_ENABLED
Deprecated.
Whether the library was compiled with TraceUtil trace enabled.
See Also:Constant Field Values
-
public static[String](https://developer.android.com/reference/java/lang/String.html "class or interface in java.lang")registeredModules()
Deprecated.
Returns a string consisting of registered module names separated by ", ".
-
public static void registerModule([String](https://developer.android.com/reference/java/lang/String.html "class or interface in java.lang")name)
Deprecated.
Registers a module to be returned in the registeredModules() string.
Parameters:name - The name of the module being registered.