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
1 changed files with 2 additions and 2 deletions

View File

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