2024-05-19 04:13:39 +00:00
|
|
|
plugins {
|
2024-07-12 04:00:13 +00:00
|
|
|
alias(libs.plugins.android.library)
|
|
|
|
alias(libs.plugins.kotlin.android)
|
|
|
|
alias(libs.plugins.compose.compiler)
|
2024-05-19 04:13:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "com.wbrawner.simplemarkdown.free"
|
2024-07-12 04:00:13 +00:00
|
|
|
compileSdk = libs.versions.maxSdk.get().toInt()
|
2024-05-19 04:13:39 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2024-07-12 04:00:13 +00:00
|
|
|
minSdk = libs.versions.minSdk.get().toInt()
|
2024-08-23 23:33:09 +00:00
|
|
|
consumerProguardFiles("consumer-rules.pro")
|
2024-05-19 04:13:39 +00:00
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
isMinifyEnabled = false
|
|
|
|
proguardFiles(
|
|
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
|
|
"proguard-rules.pro"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
buildFeatures {
|
|
|
|
compose = true
|
|
|
|
}
|
|
|
|
compileOptions {
|
2024-10-02 03:17:34 +00:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
|
|
targetCompatibility = JavaVersion.VERSION_11
|
2024-05-19 04:13:39 +00:00
|
|
|
}
|
|
|
|
kotlinOptions {
|
2024-10-02 03:17:34 +00:00
|
|
|
jvmTarget = "11"
|
2024-05-19 04:13:39 +00:00
|
|
|
}
|
2024-08-01 02:17:14 +00:00
|
|
|
lint {
|
2024-11-07 03:48:29 +00:00
|
|
|
disable += listOf(
|
|
|
|
"AndroidGradlePluginVersion",
|
|
|
|
"GradleDependency",
|
|
|
|
"ObsoleteLintCustomCheck"
|
|
|
|
)
|
2024-08-01 02:17:14 +00:00
|
|
|
warningsAsErrors = true
|
|
|
|
}
|
2024-05-19 04:13:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-07-12 04:00:13 +00:00
|
|
|
implementation(libs.timber)
|
|
|
|
val composeBom = enforcedPlatform(libs.compose.bom)
|
2024-05-19 04:13:39 +00:00
|
|
|
implementation(composeBom)
|
|
|
|
androidTestImplementation(composeBom)
|
2024-07-12 04:00:13 +00:00
|
|
|
implementation(libs.runtime)
|
2024-05-19 04:13:39 +00:00
|
|
|
}
|