From 3b4014ebb23e8c83804b5ae4d51e379384c5b39e Mon Sep 17 00:00:00 2001 From: daladim Date: Mon, 26 Dec 2022 11:58:03 +0100 Subject: [PATCH] Upgrade build.gradle to point to correct repositories This ensures Android Studio is able to successfully fetch the dependencies for this project --- app/build.gradle | 2 +- build.gradle | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 9f74c8a..c77d807 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -46,7 +46,7 @@ dependencies { compile 'com.github.owncloud:android-library:oc-android-library-0.9.8' compile 'commons-io:commons-io:2.4' - compile('com.afollestad.material-dialogs:core:0.8.1.0@aar') { + compile('com.github.afollestad.material-dialogs:core:0.8.1.0@aar') { transitive = true } } diff --git a/build.gradle b/build.gradle index 8398efb..6648781 100644 --- a/build.gradle +++ b/build.gradle @@ -17,6 +17,11 @@ allprojects { repositories { jcenter() maven { url "https://jitpack.io" } + mavenCentral() + maven { + url 'https://maven.google.com/' + name 'Google' + } } }