From 9530eff42a2b67479ed52922dd2e3ee070b9dc0c Mon Sep 17 00:00:00 2001 From: Daniel Neveux Date: Mon, 10 Dec 2018 16:14:05 +0100 Subject: [PATCH] Fix repositories order Due to recent changes, Android is no longer supporting downloading support libraries through the SDK Manager. The support libraries are now available through Google's Maven repository. This leads to not be able to install some plugins which are up to date with this rule. For some reasons, just inverting the repository search order will fix the problem. As seen in https://github.com/meteor/meteor/issues/10308 This PR does the following: - inverse the repositories order --- framework/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/build.gradle b/framework/build.gradle index 8feed69b2c..9ba0aa633b 100644 --- a/framework/build.gradle +++ b/framework/build.gradle @@ -24,10 +24,10 @@ ext { buildscript { repositories { - jcenter() maven { url "https://maven.google.com" } + jcenter() } dependencies {