2022-08-08 21:38:27 +00:00
|
|
|
apply plugin: 'java-library'
|
|
|
|
apply plugin: 'kotlin'
|
2022-08-09 11:55:01 +00:00
|
|
|
apply plugin: 'com.android.lint'
|
2022-08-08 21:38:27 +00:00
|
|
|
|
|
|
|
java {
|
|
|
|
sourceCompatibility = javaVersion
|
|
|
|
targetCompatibility = javaVersion
|
|
|
|
}
|
2019-03-08 22:44:56 +00:00
|
|
|
|
|
|
|
dependencies {
|
2022-08-08 21:38:27 +00:00
|
|
|
api project(":app:autodiscovery:api")
|
2019-03-08 22:44:56 +00:00
|
|
|
|
2022-08-08 21:38:27 +00:00
|
|
|
compileOnly 'com.github.cketti:xmlpull-extracted-from-android:1.0'
|
2019-01-16 12:52:46 +00:00
|
|
|
implementation "com.squareup.okhttp3:okhttp:${versions.okhttp}"
|
2019-03-08 22:44:56 +00:00
|
|
|
|
|
|
|
testImplementation "junit:junit:${versions.junit}"
|
|
|
|
testImplementation "com.google.truth:truth:${versions.truth}"
|
2022-02-03 00:10:52 +00:00
|
|
|
testImplementation "org.mockito:mockito-inline:${versions.mockito}"
|
2021-04-21 23:57:38 +00:00
|
|
|
testImplementation "org.mockito.kotlin:mockito-kotlin:${versions.mockitoKotlin}"
|
2022-08-08 21:38:27 +00:00
|
|
|
testImplementation 'com.github.cketti:kxml2-extracted-from-android:1.0'
|
2019-03-08 22:44:56 +00:00
|
|
|
}
|