mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Bump to 2.5.1
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=164595874
This commit is contained in:
parent
072788c88a
commit
b8c6ed6701
4 changed files with 13 additions and 6 deletions
|
|
@ -1,5 +1,12 @@
|
||||||
# Release notes #
|
# Release notes #
|
||||||
|
|
||||||
|
### r2.5.1 ###
|
||||||
|
|
||||||
|
* Fix an issue that could cause the reported playback position to stop advancing
|
||||||
|
in some cases.
|
||||||
|
* Fix an issue where a Surface could be released whilst still in use by the
|
||||||
|
player.
|
||||||
|
|
||||||
### r2.5.0 ###
|
### r2.5.0 ###
|
||||||
|
|
||||||
* IMA extension: Wraps the Google Interactive Media Ads (IMA) SDK to provide an
|
* IMA extension: Wraps the Google Interactive Media Ads (IMA) SDK to provide an
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ project.ext {
|
||||||
supportLibraryVersion = '25.4.0'
|
supportLibraryVersion = '25.4.0'
|
||||||
dexmakerVersion = '1.2'
|
dexmakerVersion = '1.2'
|
||||||
mockitoVersion = '1.9.5'
|
mockitoVersion = '1.9.5'
|
||||||
releaseVersion = 'r2.5.0'
|
releaseVersion = 'r2.5.1'
|
||||||
modulePrefix = ':'
|
modulePrefix = ':'
|
||||||
if (gradle.ext.has('exoplayerModulePrefix')) {
|
if (gradle.ext.has('exoplayerModulePrefix')) {
|
||||||
modulePrefix += gradle.ext.exoplayerModulePrefix
|
modulePrefix += gradle.ext.exoplayerModulePrefix
|
||||||
|
|
|
||||||
|
|
@ -16,8 +16,8 @@
|
||||||
|
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="com.google.android.exoplayer2.demo"
|
package="com.google.android.exoplayer2.demo"
|
||||||
android:versionCode="2500"
|
android:versionCode="2501"
|
||||||
android:versionName="2.5.0">
|
android:versionName="2.5.1">
|
||||||
|
|
||||||
<uses-permission android:name="android.permission.INTERNET"/>
|
<uses-permission android:name="android.permission.INTERNET"/>
|
||||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
||||||
|
|
|
||||||
|
|
@ -31,13 +31,13 @@ public final class ExoPlayerLibraryInfo {
|
||||||
* 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 = "2.5.0";
|
public static final String VERSION = "2.5.1";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The version of the library expressed as {@code "ExoPlayerLib/" + VERSION}.
|
* The version of the library expressed as {@code "ExoPlayerLib/" + 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 = "ExoPlayerLib/2.5.0";
|
public static final String VERSION_SLASHY = "ExoPlayerLib/2.5.1";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The version of the library expressed as an integer, for example 1002003.
|
* The version of the library expressed as an integer, for example 1002003.
|
||||||
|
|
@ -47,7 +47,7 @@ public final class ExoPlayerLibraryInfo {
|
||||||
* integer version 123045006 (123-045-006).
|
* integer version 123045006 (123-045-006).
|
||||||
*/
|
*/
|
||||||
// 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 int VERSION_INT = 2005000;
|
public static final int VERSION_INT = 2005001;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether the library was compiled with {@link com.google.android.exoplayer2.util.Assertions}
|
* Whether the library was compiled with {@link com.google.android.exoplayer2.util.Assertions}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue