equal
deleted
inserted
replaced
29 targetCompatibility = JavaVersion.VERSION_1_8 |
29 targetCompatibility = JavaVersion.VERSION_1_8 |
30 } |
30 } |
31 kotlinOptions { |
31 kotlinOptions { |
32 jvmTarget = "1.8" |
32 jvmTarget = "1.8" |
33 } |
33 } |
|
34 |
|
35 buildFeatures { |
|
36 compose = true |
|
37 } |
|
38 |
|
39 composeOptions { |
|
40 kotlinCompilerExtensionVersion = libs.versions.androidx.compose.compiler.get() |
|
41 } |
34 } |
42 } |
35 |
43 |
36 dependencies { |
44 dependencies { |
|
45 implementation(project(":core")) |
|
46 implementation(platform(libs.androidx.compose.bom)) |
|
47 implementation(libs.androidx.compose.material) |
|
48 implementation(libs.androidx.lifecycle.viewmodel) |
|
49 implementation(libs.androidx.activity) |
|
50 implementation(libs.androidx.activity.compose) |
|
51 implementation(libs.androidx.navigation.compose) |
|
52 implementation(libs.geekdroid) { |
|
53 //TODO get rid of dagger platform in geekdroid |
|
54 exclude("com.google.dagger", "dagger-platform") |
|
55 } |
37 |
56 |
38 implementation(libs.core.ktx) |
|
39 implementation(libs.appcompat) |
57 implementation(libs.appcompat) |
40 implementation(libs.material) |
|
41 testImplementation(libs.junit) |
58 testImplementation(libs.junit) |
42 androidTestImplementation(libs.androidx.test.ext.junit) |
59 androidTestImplementation(libs.androidx.test.ext.junit) |
43 androidTestImplementation(libs.espresso.core) |
60 androidTestImplementation(libs.espresso.core) |
44 } |
61 } |