apply plugin: 'java-library' apply plugin: 'kotlin' apply plugin: 'com.android.lint' java { sourceCompatibility = javaVersion targetCompatibility = javaVersion } dependencies { api project(":app:autodiscovery:api") compileOnly 'com.github.cketti:xmlpull-extracted-from-android:1.0' implementation "com.squareup.okhttp3:okhttp:${versions.okhttp}" testImplementation "junit:junit:${versions.junit}" testImplementation "com.google.truth:truth:${versions.truth}" testImplementation "org.mockito:mockito-inline:${versions.mockito}" testImplementation "org.mockito.kotlin:mockito-kotlin:${versions.mockitoKotlin}" testImplementation 'com.github.cketti:kxml2-extracted-from-android:1.0' }