Merge pull request #2470 from open-keychain/switch_repo_order

Switch order of repositories, search Google Maven repo first
This commit is contained in:
Dominik Schürmann 2019-07-07 11:54:26 +02:00 committed by GitHub
commit b35292f107
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
buildscript { buildscript {
repositories { repositories {
jcenter()
google() google()
jcenter()
} }
dependencies { dependencies {
@ -16,8 +16,8 @@ buildscript {
allprojects { allprojects {
repositories { repositories {
jcenter()
google() google()
jcenter()
maven { url "https://jitpack.io" } maven { url "https://jitpack.io" }
} }
} }