add tmp-fix for google-maven-repo issues

This commit is contained in:
Felix 2018-12-10 23:03:53 +01:00
parent 48197765e1
commit 8e03bd32a9

View file

@ -3,9 +3,11 @@
buildscript { buildscript {
ext.kotlin_version = '1.2.71' ext.kotlin_version = '1.2.71'
repositories { repositories {
jcenter() mavenLocal()
mavenCentral()
google() google()
jcenter()
maven { url 'https://google.bintray.com/exoplayer/' }
maven { url 'https://repo.spring.io/libs-release'}
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:3.2.1' classpath 'com.android.tools.build:gradle:3.2.1'
@ -23,6 +25,8 @@ allprojects {
jcenter() jcenter()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url 'https://jitpack.io' } maven { url 'https://jitpack.io' }
maven { url 'https://google.bintray.com/exoplayer/' }
maven { url 'https://repo.spring.io/libs-release'}
} }
} }