Refactoring
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import org.gradle.kotlin.dsl.annotationProcessor
|
||||
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
|
||||
|
||||
|
||||
plugins {
|
||||
@@ -8,8 +9,6 @@ plugins {
|
||||
kotlin("kapt")
|
||||
}
|
||||
|
||||
|
||||
|
||||
android {
|
||||
namespace = "com.kouros.data"
|
||||
compileSdk = 36
|
||||
@@ -33,13 +32,14 @@ android {
|
||||
sourceCompatibility = JavaVersion.VERSION_11
|
||||
targetCompatibility = JavaVersion.VERSION_11
|
||||
}
|
||||
kotlinOptions {
|
||||
jvmTarget = "11"
|
||||
kotlin {
|
||||
compilerOptions {
|
||||
jvmTarget = JvmTarget.JVM_11
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(libs.android.sdk.turf)
|
||||
implementation(libs.androidx.core.ktx)
|
||||
implementation(libs.androidx.appcompat)
|
||||
implementation(libs.material)
|
||||
@@ -47,6 +47,9 @@ dependencies {
|
||||
implementation(libs.koin.core)
|
||||
implementation(libs.koin.android)
|
||||
implementation(libs.koin.compose.viewmodel)
|
||||
implementation(libs.androidx.car.app)
|
||||
implementation(libs.android.sdk.turf)
|
||||
|
||||
|
||||
// objectbox
|
||||
implementation(libs.objectbox.kotlin)
|
||||
|
||||
Reference in New Issue
Block a user