Fixes #190: Changes the import order of gradle repositories.

This commit is contained in:
Matthias Bertram 2018-06-08 20:31:05 +02:00
parent d493f95f5a
commit 5423d91e5c

View file

@ -2,10 +2,10 @@
buildscript { buildscript {
repositories { repositories {
jcenter()
maven { maven {
url "https://maven.google.com" url "https://maven.google.com"
} }
jcenter()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:3.1.0' classpath 'com.android.tools.build:gradle:3.1.0'
@ -17,8 +17,8 @@ buildscript {
allprojects { allprojects {
repositories { repositories {
jcenter()
maven { url "https://maven.google.com" } maven { url "https://maven.google.com" }
jcenter()
maven { url "https://jitpack.io" } maven { url "https://jitpack.io" }
} }
} }