31 lines
748 B
Kotlin
31 lines
748 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.unit.common"
|
|
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()
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":libraries:core"))
|
|
implementation(libs.kotlin.test)
|
|
}
|