-
Notifications
You must be signed in to change notification settings - Fork 0
/
feature_module_config.gradle
40 lines (32 loc) · 1.06 KB
/
feature_module_config.gradle
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
40
apply plugin: 'com.android.dynamic-feature'
apply plugin: 'kotlin-android'
apply plugin: 'com.google.devtools.ksp'
apply plugin: 'org.jetbrains.kotlin.plugin.compose'
android {
compileSdk 35
defaultConfig {
minSdk 28
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildFeatures {
compose true
}
compileOptions {
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '17'
}
}
dependencies {
implementation project(":app")
coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:$core_lib_desugaring"
ksp "me.tatarka.inject:kotlin-inject-compiler-ksp:0.7.2"
implementation "me.tatarka.inject:kotlin-inject-runtime:0.7.2"
testImplementation 'junit:junit:4.13.2'
testImplementation 'app.cash.turbine:turbine:1.1.0'
testImplementation "io.mockk:mockk:1.13.12"
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0'
}