Add "3" into media3 version string

PiperOrigin-RevId: 413079384
This commit is contained in:
olly 2021-11-30 08:40:22 +00:00 committed by tonihei
parent 43328d7623
commit b91db3f5e2

View File

@ -25,15 +25,15 @@ import java.util.HashSet;
public final class MediaLibraryInfo { public final class MediaLibraryInfo {
/** A tag to use when logging library information. */ /** A tag to use when logging library information. */
public static final String TAG = "AndroidXMedia"; public static final String TAG = "AndroidXMedia3";
/** The version of the library expressed as a string, for example "1.2.3". */ /** The version of the library expressed as a string, for example "1.2.3". */
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION_INT) or vice versa. // Intentionally hardcoded. Do not derive from other constants (e.g. VERSION_INT) or vice versa.
public static final String VERSION = "1.0.0-alpha"; public static final String VERSION = "1.0.0-alpha01";
/** The version of the library expressed as {@code TAG + "/" + VERSION}. */ /** The version of the library expressed as {@code TAG + "/" + VERSION}. */
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa. // Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa.
public static final String VERSION_SLASHY = "AndroidXMedia/1.0.0-alpha"; public static final String VERSION_SLASHY = "AndroidXMedia3/1.0.0-alpha01";
/** /**
* The version of the library expressed as an integer, for example 1002003. * The version of the library expressed as an integer, for example 1002003.