Commit 75d5adce by olly Committed by Oliver Woodman

Update dependency versions

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=168194589
parent 340d0be4
...@@ -28,15 +28,13 @@ repository and depend on the modules locally. ...@@ -28,15 +28,13 @@ repository and depend on the modules locally.
### From JCenter ### ### From JCenter ###
The easiest way to get started using ExoPlayer is to add it as a gradle The easiest way to get started using ExoPlayer is to add it as a gradle
dependency. You need to make sure you have the JCenter and Google Maven dependency. You need to make sure you have the JCenter and Google repositories
repositories included in the `build.gradle` file in the root of your project: included in the `build.gradle` file in the root of your project:
```gradle ```gradle
repositories { repositories {
jcenter() jcenter()
maven { google()
url "https://maven.google.com"
}
} }
``` ```
......
...@@ -14,9 +14,7 @@ ...@@ -14,9 +14,7 @@
buildscript { buildscript {
repositories { repositories {
jcenter() jcenter()
maven { google()
url "https://maven.google.com"
}
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:3.0.0-beta4' classpath 'com.android.tools.build:gradle:3.0.0-beta4'
...@@ -34,9 +32,7 @@ buildscript { ...@@ -34,9 +32,7 @@ buildscript {
allprojects { allprojects {
repositories { repositories {
jcenter() jcenter()
maven { google()
url "https://maven.google.com"
}
} }
project.ext { project.ext {
exoplayerPublishEnabled = true exoplayerPublishEnabled = true
......
...@@ -21,8 +21,8 @@ project.ext { ...@@ -21,8 +21,8 @@ project.ext {
targetSdkVersion = 26 targetSdkVersion = 26
buildToolsVersion = '26' buildToolsVersion = '26'
testSupportLibraryVersion = '0.5' testSupportLibraryVersion = '0.5'
supportLibraryVersion = '26.0.1' supportLibraryVersion = '26.0.2'
playServicesLibraryVersion = '11.0.2' playServicesLibraryVersion = '11.2.0'
dexmakerVersion = '1.2' dexmakerVersion = '1.2'
mockitoVersion = '1.9.5' mockitoVersion = '1.9.5'
junitVersion = '4.12' junitVersion = '4.12'
......
...@@ -26,7 +26,7 @@ android { ...@@ -26,7 +26,7 @@ android {
dependencies { dependencies {
compile project(modulePrefix + 'library-core') compile project(modulePrefix + 'library-core')
compile 'com.google.vr:sdk-audio:1.60.1' compile 'com.google.vr:sdk-audio:1.80.0'
} }
ext { ext {
......
...@@ -29,9 +29,9 @@ dependencies { ...@@ -29,9 +29,9 @@ dependencies {
compile project(modulePrefix + 'library-core') compile project(modulePrefix + 'library-core')
// This dependency is necessary to force the supportLibraryVersion of // This dependency is necessary to force the supportLibraryVersion of
// com.android.support:support-v4 to be used. Else an older version (25.2.0) is included via: // com.android.support:support-v4 to be used. Else an older version (25.2.0) is included via:
// com.google.android.gms:play-services-ads:11.0.2 // com.google.android.gms:play-services-ads:11.2.0
// |-- com.google.android.gms:play-services-ads-lite:[11.0.2] -> 11.0.2 // |-- com.google.android.gms:play-services-ads-lite:11.2.0
// |-- com.google.android.gms:play-services-basement:[11.0.2] -> 11.0.2 // |-- com.google.android.gms:play-services-basement:11.2.0
// |-- com.android.support:support-v4:25.2.0 // |-- com.android.support:support-v4:25.2.0
compile 'com.android.support:support-v4:' + supportLibraryVersion compile 'com.android.support:support-v4:' + supportLibraryVersion
compile 'com.google.ads.interactivemedia.v3:interactivemedia:3.7.4' compile 'com.google.ads.interactivemedia.v3:interactivemedia:3.7.4'
......
...@@ -31,7 +31,7 @@ android { ...@@ -31,7 +31,7 @@ android {
dependencies { dependencies {
compile project(modulePrefix + 'library-core') compile project(modulePrefix + 'library-core')
compile('com.squareup.okhttp3:okhttp:3.8.1') { compile('com.squareup.okhttp3:okhttp:3.9.0') {
exclude group: 'org.json' exclude group: 'org.json'
} }
} }
......
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