-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcom.apsl.surveyapp.feature.gradle.kts
39 lines (32 loc) · 1.18 KB
/
com.apsl.surveyapp.feature.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
@file:Suppress("UnstableApiUsage")
plugins {
id("com.apsl.surveyapp.android-library")
id("dagger.hilt.android.plugin")
kotlin("kapt")
}
android {
namespace = "${Config.namespace}.feature.${project.name}"
buildFeatures {
compose = true
}
}
dependencies {
implementation(project(":core:data"))
implementation(project(":core:models"))
implementation(project(":core:ui"))
implementation(project(":core:util:android"))
implementation(project(":core:util:kotlin"))
implementation(platform(libs.androidx.compose.bom))
implementation(libs.androidx.compose.animation)
implementation(libs.androidx.compose.material3)
implementation(libs.androidx.compose.material.icons.extended)
implementation(libs.androidx.compose.ui)
implementation(libs.androidx.compose.ui.toolingPreview)
implementation(libs.androidx.compose.ui.util)
debugImplementation(libs.androidx.compose.ui.tooling)
implementation(libs.androidx.lifecycle.compose)
implementation(libs.androidx.navigation.compose)
implementation(libs.androidx.hilt.navigationCompose)
implementation(libs.dagger.hilt.android)
kapt(libs.dagger.hilt.android.compiler)
}