summaryrefslogtreecommitdiffstats
path: root/src/android
diff options
context:
space:
mode:
authorAssam Boudjelthia <assam.boudjelthia@qt.io>2021-10-06 11:04:40 +0300
committerAssam Boudjelthia <assam.boudjelthia@qt.io>2021-10-06 16:05:18 +0300
commit3dbca82f861c8c83eea32560d5e63e1c71057d3b (patch)
tree1933e0a11a50abd2586da5ae0d347380b7bb00e5 /src/android
parent733923c81cd313a02976c026484654e4501b3527 (diff)
Android: use gradle repo mavenCentral() instead of jcenter()
jcenter() is deprecated and will be shutdown by next year [1], thus the replacement mavenCentral() could be used instead. [1] https://blog.gradle.org/jcenter-shutdown Pick-to: 6.2 Change-Id: Ic9d1c15d657f23712ee4c866d5c1a45706353429 Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io>
Diffstat (limited to 'src/android')
-rw-r--r--src/android/templates/build.gradle4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/android/templates/build.gradle b/src/android/templates/build.gradle
index 7a77517681..5db1c67e5f 100644
--- a/src/android/templates/build.gradle
+++ b/src/android/templates/build.gradle
@@ -1,7 +1,7 @@
buildscript {
repositories {
google()
- jcenter()
+ mavenCentral()
}
dependencies {
@@ -11,7 +11,7 @@ buildscript {
repositories {
google()
- jcenter()
+ mavenCentral()
}
apply plugin: 'com.android.application'