Skip to content

Commit 76088cd

Browse files
committed
Bump Media3 version to 1.5.1
PiperOrigin-RevId: 707576152 (cherry picked from commit c3b58f2)
1 parent 7ae9ddf commit 76088cd

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/ISSUE_TEMPLATE/bug.yml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ body:
1919
options:
2020
- Media3 main branch
2121
- Media3 pre-release (alpha, beta or RC not in this list)
22+
- Media3 1.5.1
2223
- Media3 1.5.0
2324
- Media3 1.4.1
2425
- Media3 1.4.0

constants.gradle

+2-2
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.5.0'
16-
releaseVersionCode = 1_005_000_3_00
15+
releaseVersion = '1.5.1'
16+
releaseVersionCode = 1_005_001_3_00
1717
minSdkVersion = 21
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

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ public final class MediaLibraryInfo {
2929

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

3434
/** The version of the library expressed as {@code TAG + "/" + VERSION}. */
3535
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa.
36-
public static final String VERSION_SLASHY = "AndroidXMedia3/1.5.0";
36+
public static final String VERSION_SLASHY = "AndroidXMedia3/1.5.1";
3737

3838
/**
3939
* The version of the library expressed as an integer, for example 1002003300.
@@ -47,7 +47,7 @@ public final class MediaLibraryInfo {
4747
* (123-045-006-3-00).
4848
*/
4949
// Intentionally hardcoded. Do not derive from other constants (e.g. VERSION) or vice versa.
50-
public static final int VERSION_INT = 1_005_000_3_00;
50+
public static final int VERSION_INT = 1_005_001_3_00;
5151

5252
/** Whether the library was compiled with {@link Assertions} checks enabled. */
5353
public static final boolean ASSERTIONS_ENABLED = true;

0 commit comments

Comments
 (0)