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 {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.0'
@ -17,8 +17,8 @@ buildscript {
allprojects {
repositories {
jcenter()
maven { url "https://maven.google.com" }
jcenter()
maven { url "https://jitpack.io" }
}
}