Skip to content
This repository was archived by the owner on Jul 22, 2021. It is now read-only.

Maven needs to take priority over jcenter #2

Merged
merged 1 commit into from
Oct 24, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bin/templates/project/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ apply plugin: 'com.android.application'

buildscript {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
jcenter()
}

// Switch the Android Gradle plugin version requirement depending on the
Expand All @@ -39,10 +39,10 @@ buildscript {
// Allow plugins to declare Maven dependencies via build-extras.gradle.
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
jcenter()
}
}

Expand Down