Make jcenter exceptions explicit
This commit is contained in:
parent
2632e045ab
commit
bd68012026
@ -181,7 +181,7 @@ dependencies {
|
|||||||
|
|
||||||
implementation 'com.github.ligi:tracedroid:4.1'
|
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
|
* Not in release, so not mentioned in licenses list
|
||||||
|
21
build.gradle
21
build.gradle
@ -4,7 +4,15 @@ buildscript {
|
|||||||
ext.kotlin_version = '1.4.31'
|
ext.kotlin_version = '1.4.31'
|
||||||
repositories {
|
repositories {
|
||||||
google()
|
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 {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:4.1.2'
|
classpath 'com.android.tools.build:gradle:4.1.2'
|
||||||
@ -18,9 +26,16 @@ buildscript {
|
|||||||
allprojects {
|
allprojects {
|
||||||
repositories {
|
repositories {
|
||||||
google()
|
google()
|
||||||
jcenter()
|
mavenCentral()
|
||||||
maven { url "https://jitpack.io" }
|
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")
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user