mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Bump to 1.3.2
This commit is contained in:
parent
c86a5378c7
commit
763d68f26c
4 changed files with 6 additions and 6 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
# Release notes #
|
# Release notes #
|
||||||
|
|
||||||
### Latest dev branch (from r1.3.1) ###
|
### r1.3.2 ###
|
||||||
|
|
||||||
* DataSource improvements: `DefaultUriDataSource` now handles http://, https://, file://, asset://
|
* DataSource improvements: `DefaultUriDataSource` now handles http://, https://, file://, asset://
|
||||||
and content:// URIs automatically. It also handles file:///android_asset/* URIs, and file paths
|
and content:// URIs automatically. It also handles file:///android_asset/* URIs, and file paths
|
||||||
|
|
|
||||||
|
|
@ -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.exoplayer.demo"
|
package="com.google.android.exoplayer.demo"
|
||||||
android:versionCode="1301"
|
android:versionCode="1302"
|
||||||
android:versionName="1.3.1"
|
android:versionName="1.3.2"
|
||||||
android:theme="@style/RootTheme">
|
android:theme="@style/RootTheme">
|
||||||
|
|
||||||
<uses-permission android:name="android.permission.INTERNET"/>
|
<uses-permission android:name="android.permission.INTERNET"/>
|
||||||
|
|
|
||||||
|
|
@ -74,7 +74,7 @@ publish {
|
||||||
userOrg = 'google'
|
userOrg = 'google'
|
||||||
groupId = 'com.google.android.exoplayer'
|
groupId = 'com.google.android.exoplayer'
|
||||||
artifactId = 'exoplayer'
|
artifactId = 'exoplayer'
|
||||||
version = 'r1.3.1'
|
version = 'r1.3.2'
|
||||||
description = 'The ExoPlayer library.'
|
description = 'The ExoPlayer library.'
|
||||||
website = 'https://github.com/google/ExoPlayer'
|
website = 'https://github.com/google/ExoPlayer'
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ public class ExoPlayerLibraryInfo {
|
||||||
/**
|
/**
|
||||||
* The version of the library, expressed as a string.
|
* The version of the library, expressed as a string.
|
||||||
*/
|
*/
|
||||||
public static final String VERSION = "1.3.1";
|
public static final String VERSION = "1.3.2";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The version of the library, expressed as an integer.
|
* The version of the library, expressed as an integer.
|
||||||
|
|
@ -34,7 +34,7 @@ public class ExoPlayerLibraryInfo {
|
||||||
* Three digits are used for each component of {@link #VERSION}. For example "1.2.3" has the
|
* Three digits are used for each component of {@link #VERSION}. For example "1.2.3" has the
|
||||||
* corresponding integer version 001002003.
|
* corresponding integer version 001002003.
|
||||||
*/
|
*/
|
||||||
public static final int VERSION_INT = 001003001;
|
public static final int VERSION_INT = 001003002;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether the library was compiled with {@link com.google.android.exoplayer.util.Assertions}
|
* Whether the library was compiled with {@link com.google.android.exoplayer.util.Assertions}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue