-
Notifications
You must be signed in to change notification settings - Fork 174
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
47 lines (39 loc) · 1.27 KB
/
build.gradle.kts
File metadata and controls
47 lines (39 loc) · 1.27 KB
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
42
43
44
45
46
47
plugins {
id("com.android.application")
id("kotlin-android")
id("kotlin-kapt")
}
android {
compileSdk = rootProject.extra["compileSdkVersion"] as Int
defaultConfig {
applicationId = "com.mironchik.multimodule"
minSdk = rootProject.extra["minSdkVersion"] as Int
versionCode = 1
versionName = "1.0"
}
buildTypes {
getByName("release") {
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro")
}
}
compileOptions {
sourceCompatibility = rootProject.extra["javaCompatibility"] as JavaVersion
targetCompatibility = rootProject.extra["javaCompatibility"] as JavaVersion
}
kotlinOptions {
jvmTarget = "17"
}
namespace = "com.mironchik.multimodule"
}
dependencies {
implementation(project(":modules:core:api_factory"))
implementation(project(":modules:features:producer_impl"))
implementation(project(":modules:features:receiver_impl"))
implementation(project(":modules:features:screen"))
implementation(platform(project(":modules:platform")))
implementation("com.google.dagger:dagger")
kapt("com.google.dagger:dagger-compiler:2.52")
}