fix: Only pull Exoplayer from jcenter

This commit is contained in:
Lei Nelissen
2022-05-04 17:16:58 +02:00
parent f7874410d4
commit 89d29844b9

View File

@@ -14,7 +14,7 @@ buildscript {
}
dependencies {
classpath("com.android.tools.build:gradle:4.2.2")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
@@ -34,7 +34,13 @@ allprojects {
}
google()
jcenter()
maven { url 'https://www.jitpack.io' }
jcenter() {
content {
includeGroup("com.google.android.exoplayer")
}
}
}
}