Skip to content

Commit ef00436

Browse files
committed
Version bump to media3:1.10.0-beta01
PiperOrigin-RevId: 873991538 (cherry picked from commit 7cd0f38)
1 parent a11452c commit ef00436

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

constants.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414
project.ext {
15-
releaseVersion = '1.10.0-alpha01'
16-
releaseVersionCode = 1_010_000_0_01
15+
releaseVersion = '1.10.0-beta01'
16+
releaseVersionCode = 1_010_000_1_01
1717
minSdkVersion = 23
1818
// See https://developer.android.com/training/cars/media/automotive-os#automotive-module
1919
automotiveMinSdkVersion = 28

libraries/common/src/main/java/androidx/media3/common/MediaLibraryInfo.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ public final class MediaLibraryInfo {
2828

2929
/** The version of the library expressed as a string, for example "1.2.3" or "1.2.0-beta01". */
3030
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION_INT) or vice versa.
31-
public static final String VERSION = "1.10.0-alpha01";
31+
public static final String VERSION = "1.10.0-beta01";
3232

3333
/** The version of the library expressed as {@code TAG + "/" + VERSION}. */
3434
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa.
35-
public static final String VERSION_SLASHY = "AndroidXMedia3/1.10.0-alpha01";
35+
public static final String VERSION_SLASHY = "AndroidXMedia3/1.10.0-beta01";
3636

3737
/**
3838
* The version of the library expressed as an integer, for example 1002003300.
@@ -46,7 +46,7 @@ public final class MediaLibraryInfo {
4646
* (123-045-006-3-00).
4747
*/
4848
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa.
49-
public static final int VERSION_INT = 1_010_000_0_01;
49+
public static final int VERSION_INT = 1_010_000_1_01;
5050

5151
/** Whether the library was compiled with {@link TraceUtil} trace enabled. */
5252
public static final boolean TRACE_ENABLED = true;

0 commit comments

Comments
 (0)