Merge pull request #135 from FireMasterK/dependencies

Exclude GMS from exoplayer's cronet dependency
This commit is contained in:
Farbod 2022-04-17 20:37:31 +04:30 committed by GitHub
commit 42cbb58c15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 5 deletions

View File

@ -80,10 +80,8 @@ dependencies {
implementation 'com.arthenica:ffmpeg-kit-min:4.5.1.LTS' implementation 'com.arthenica:ffmpeg-kit-min:4.5.1.LTS'
coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:1.1.5" coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
implementation 'com.google.android.exoplayer:extension-cronet:2.17.1' implementation ('com.google.android.exoplayer:extension-cronet:2.17.1') { exclude group: 'com.google.android.gms' }
implementation 'org.chromium.net:cronet-embedded:98.4758.101' implementation 'org.chromium.net:cronet-embedded:98.4758.101'
implementation 'com.blankj:utilcode:1.30.0'
} }

View File

@ -3,7 +3,6 @@ dependencyResolutionManagement {
repositories { repositories {
google() google()
mavenCentral() mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
} }
} }
rootProject.name = "LibreTube" rootProject.name = "LibreTube"