Commit 86b2209a by Oliver Woodman

Bump version to 1.1.0.

Also update gradle files.
parent c4b2a012
......@@ -19,7 +19,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.14.+'
classpath 'com.android.tools.build:gradle:1.0.0-rc1'
}
}
......
......@@ -15,7 +15,7 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "19.1"
buildToolsVersion "21.1.1"
defaultConfig {
minSdkVersion 16
......
......@@ -16,8 +16,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.android.exoplayer.demo"
android:versionCode="1013"
android:versionName="1.0.13"
android:versionCode="1100"
android:versionName="1.1.00"
android:theme="@style/RootTheme">
<uses-permission android:name="android.permission.INTERNET"/>
......
......@@ -15,7 +15,7 @@ apply plugin: 'com.android.library'
android {
compileSdkVersion 21
buildToolsVersion "19.1"
buildToolsVersion "21.1.1"
defaultConfig {
minSdkVersion 9
......
......@@ -26,15 +26,15 @@ public class ExoPlayerLibraryInfo {
/**
* The version of the library, expressed as a string.
*/
public static final String VERSION = "1.0.13";
public static final String VERSION = "1.1.0";
/**
* The version of the library, expressed as an integer.
* <p>
* Three digits are used for each component of {@link #VERSION}. For example "1.2.3" has the
* corresponding integer version 1002003.
* corresponding integer version 001002003.
*/
public static final int VERSION_INT = 1000013;
public static final int VERSION_INT = 001001000;
/**
* Whether the library was compiled with {@link com.google.android.exoplayer.util.Assertions}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment