mirror of
https://github.com/bbara04/Purefin.git
synced 2026-07-23 19:26:50 +00:00
- Bump compileSdk/targetSdk from 36 to 37 across all modules - Upgrade gradle wrapper to 9.6.1 - Upgrade agp to 9.3.0, kotlin to 2.4.10, ksp to 2.3.10 - Upgrade composeBom to 2026.06.01 and compose libs - Upgrade hilt to 2.60.1, room to 2.8.4, media3 to 1.10.1 - Upgrade okhttp to 5.4.0, coil to 3.5.0, datastore to 1.2.1 - Upgrade lifecycle to 2.11.0, activity-compose to 1.13.0 - Upgrade firebase crashlytics to 20.1.0, gms services to 4.5.0
47 lines
1.1 KiB
Kotlin
47 lines
1.1 KiB
Kotlin
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
|
|
|
|
plugins {
|
|
alias(libs.plugins.android.library)
|
|
alias(libs.plugins.kotlin.android)
|
|
alias(libs.plugins.kotlin.compose)
|
|
}
|
|
|
|
android {
|
|
namespace = "hu.bbara.purefin.core.ui"
|
|
compileSdk = 37
|
|
|
|
defaultConfig {
|
|
minSdk = 29
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
|
|
buildFeatures {
|
|
compose = true
|
|
}
|
|
}
|
|
|
|
kotlin {
|
|
compilerOptions {
|
|
jvmTarget.set(JvmTarget.JVM_11)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":data"))
|
|
implementation(project(":core"))
|
|
implementation(platform(libs.androidx.compose.bom))
|
|
implementation(libs.androidx.compose.ui)
|
|
implementation(libs.androidx.compose.ui.graphics)
|
|
implementation(libs.androidx.compose.ui.tooling.preview)
|
|
implementation(libs.androidx.compose.material3)
|
|
implementation(libs.androidx.compose.material.icons.extended)
|
|
implementation(libs.androidx.compose.foundation)
|
|
implementation(libs.coil.compose)
|
|
implementation(libs.kotlinx.coroutines.core)
|
|
testImplementation(libs.junit)
|
|
}
|