summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Li <andrey.li@mapbox.com>2018-10-26 10:43:07 -0700
committerGitHub <noreply@github.com>2018-10-26 10:43:07 -0700
commitda2685d6871150eaaf0eb75b01038d8b9fef7a8d (patch)
tree49064092e30cfdd7e8cd4478f108cfadbfdd4635
parentadd7e3b9f3e8e107ba52fe5e832171e8b639ad24 (diff)
downloadqtlocation-mapboxgl-da2685d6871150eaaf0eb75b01038d8b9fef7a8d.tar.gz
[android] Fix order in which repos are being synced (#13202)
-rw-r--r--platform/android/build.gradle4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/android/build.gradle b/platform/android/build.gradle
index 1e5efc0d7b..86e4f4f5f8 100644
--- a/platform/android/build.gradle
+++ b/platform/android/build.gradle
@@ -2,8 +2,8 @@ buildscript {
apply from: "${rootDir}/gradle/dependencies.gradle"
repositories {
- jcenter()
google()
+ jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.4'
@@ -15,8 +15,8 @@ buildscript {
allprojects {
repositories {
mavenCentral()
- jcenter()
google()
+ jcenter()
// Snapshot repository
//maven { url "http://oss.sonatype.org/content/repositories/snapshots/" }
}