2023-01-26 23:53:24 +01:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
2023-01-28 04:31:12 +01:00
|
|
|
kotlin("android")
|
2023-01-26 23:53:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "tachiyomi.presentation.core"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
|
|
}
|
2023-02-18 21:52:52 +01:00
|
|
|
|
|
|
|
buildFeatures {
|
|
|
|
compose = true
|
|
|
|
}
|
|
|
|
|
|
|
|
composeOptions {
|
|
|
|
kotlinCompilerExtensionVersion = compose.versions.compiler.get()
|
|
|
|
}
|
2023-01-26 23:53:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-01-23 13:35:58 +01:00
|
|
|
api(projects.core)
|
|
|
|
api(projects.i18n)
|
2023-07-10 23:25:52 +02:00
|
|
|
|
2023-02-18 21:52:52 +01:00
|
|
|
// Compose
|
|
|
|
implementation(platform(compose.bom))
|
2023-02-20 16:12:41 +01:00
|
|
|
implementation(compose.activity)
|
2023-02-18 21:52:52 +01:00
|
|
|
implementation(compose.foundation)
|
|
|
|
implementation(compose.material3.core)
|
|
|
|
implementation(compose.material.core)
|
|
|
|
implementation(compose.material.icons)
|
|
|
|
implementation(compose.animation)
|
|
|
|
implementation(compose.animation.graphics)
|
2023-06-23 14:26:35 +02:00
|
|
|
debugImplementation(compose.ui.tooling)
|
|
|
|
implementation(compose.ui.tooling.preview)
|
2023-02-18 21:52:52 +01:00
|
|
|
implementation(compose.ui.util)
|
2023-11-12 04:43:50 +01:00
|
|
|
|
|
|
|
implementation(kotlinx.immutables)
|
2023-02-18 21:52:52 +01:00
|
|
|
}
|
2023-01-26 23:53:24 +01:00
|
|
|
|
2023-02-18 21:52:52 +01:00
|
|
|
tasks {
|
|
|
|
// See https://kotlinlang.org/docs/reference/experimental.html#experimental-status-of-experimental-api(-markers)
|
|
|
|
withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
|
|
|
kotlinOptions.freeCompilerArgs += listOf(
|
|
|
|
"-opt-in=androidx.compose.foundation.layout.ExperimentalLayoutApi",
|
|
|
|
"-opt-in=androidx.compose.material.ExperimentalMaterialApi",
|
|
|
|
"-opt-in=androidx.compose.material3.ExperimentalMaterial3Api",
|
|
|
|
"-opt-in=androidx.compose.material.ExperimentalMaterialApi",
|
|
|
|
"-opt-in=androidx.compose.ui.ExperimentalComposeUiApi",
|
|
|
|
"-opt-in=androidx.compose.foundation.ExperimentalFoundationApi",
|
|
|
|
"-opt-in=androidx.compose.animation.ExperimentalAnimationApi",
|
|
|
|
"-opt-in=androidx.compose.animation.graphics.ExperimentalAnimationGraphicsApi",
|
2023-06-01 04:47:31 +02:00
|
|
|
"-opt-in=coil.annotation.ExperimentalCoilApi",
|
|
|
|
"-opt-in=kotlinx.coroutines.FlowPreview",
|
2023-02-18 21:52:52 +01:00
|
|
|
)
|
|
|
|
}
|
2023-01-26 23:53:24 +01:00
|
|
|
}
|