2020-12-21 15:52:03 +01:00
|
|
|
apply plugin: 'java'
|
|
|
|
|
|
|
|
//noinspection GroovyUnusedAssignment
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
//noinspection GroovyUnusedAssignment
|
|
|
|
targetCompatibility = 1.8
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
def dependencies = rootProject.ext.dependencies
|
|
|
|
|
2021-07-13 21:33:24 +02:00
|
|
|
implementation(dependencies.android) {
|
|
|
|
exclude module: 'httpclient'
|
|
|
|
}
|
2020-12-21 15:52:03 +01:00
|
|
|
}
|