-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeature_module_config.gradle
More file actions
41 lines (32 loc) · 905 Bytes
/
feature_module_config.gradle
File metadata and controls
41 lines (32 loc) · 905 Bytes
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
41
//import org.jetbrains.kotlin.gradle.dsl.JvmTarget
apply plugin: 'com.android.dynamic-feature'
apply plugin: 'org.jetbrains.kotlin.plugin.compose'
apply plugin: 'dev.zacsweers.metro'
android {
compileSdk 37
defaultConfig {
minSdk 28
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildFeatures {
compose true
}
compileOptions {
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
}
//kotlin {
// compilerOptions {
// jvmTarget.set(JvmTarget.JVM_17)
// }
//}
dependencies {
implementation project(":app")
coreLibraryDesugaring libs.desugar.jdk.libs
testImplementation libs.junit
testImplementation libs.turbine
testImplementation libs.mockk
testImplementation libs.kotlinx.coroutines.test
}