Exclude httpclient of dependency to fix CVE's

This commit is contained in:
Julian Raufelder 2021-07-13 21:33:24 +02:00
parent 0bcfc123dd
commit e76e8016e6
No known key found for this signature in database
GPG Key ID: 17EE71F6634E381D

View File

@ -8,5 +8,7 @@ targetCompatibility = 1.8
dependencies {
def dependencies = rootProject.ext.dependencies
implementation dependencies.android
implementation(dependencies.android) {
exclude module: 'httpclient'
}
}