36 lines
900 B
Kotlin
36 lines
900 B
Kotlin
plugins {
|
|
id("com.android.library")
|
|
id("kotlin-android")
|
|
id("appyx-publish-android")
|
|
id("appyx-lint")
|
|
id("appyx-detekt")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.bumble.appyx.testing.junit5"
|
|
compileSdk = libs.versions.androidCompileSdk.get().toInt()
|
|
|
|
defaultConfig {
|
|
minSdk = libs.versions.androidMinSdk.get().toInt()
|
|
targetSdk = libs.versions.androidTargetSdk.get().toInt()
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildFeatures {
|
|
compose = true
|
|
}
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion = libs.versions.composeCompiler.get()
|
|
}
|
|
packagingOptions {
|
|
exclude("META-INF/LICENSE.md")
|
|
exclude("META-INF/LICENSE-notice.md")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":libraries:testing-unit-common"))
|
|
api(libs.junit.api)
|
|
api(libs.kotlin.coroutines.test.jvm)
|
|
}
|