29 lines
683 B
Kotlin
29 lines
683 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.ui.activity"
|
|
compileSdk = libs.versions.androidCompileSdk.get().toInt()
|
|
|
|
defaultConfig {
|
|
minSdk = libs.versions.androidMinSdk.get().toInt()
|
|
targetSdk = libs.versions.androidTargetSdk.get().toInt()
|
|
}
|
|
buildFeatures {
|
|
compose = true
|
|
}
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion = libs.versions.composeCompiler.get()
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":libraries:core"))
|
|
implementation(libs.androidx.activity.compose)
|
|
}
|