Make jcenter exceptions explicit

This commit is contained in:
Matthieu 2021-03-16 00:48:08 +01:00
parent 2632e045ab
commit bd68012026
2 changed files with 19 additions and 4 deletions

View File

@ -181,7 +181,7 @@ dependencies {
implementation 'com.github.ligi:tracedroid:4.1'
implementation 'me.relex:circleindicator:2.1.4'
implementation 'me.relex:circleindicator:2.1.6'
/**
* Not in release, so not mentioned in licenses list

View File

@ -4,7 +4,15 @@ buildscript {
ext.kotlin_version = '1.4.31'
repositories {
google()
jcenter()
mavenCentral()
jcenter {
content {
// org.jetbrains.trove4j is only available in JCenter
//TODO remove JCenter repo:
// see issue https://gitlab.shinice.net/pixeldroid/PixelDroid/-/issues/278
includeGroup("org.jetbrains.trove4j")
}
}
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.2'
@ -18,9 +26,16 @@ buildscript {
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
jcenter {
content {
// info.androidhive:imagefilters is only available in JCenter
//TODO remove JCenter repo:
// see issue https://gitlab.shinice.net/pixeldroid/PixelDroid/-/issues/278
includeGroup("info.androidhive")
}
}
}
}