-
Notifications
You must be signed in to change notification settings - Fork 1
/
module.gradle
64 lines (50 loc) · 1.33 KB
/
module.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
apply plugin: 'dagger.hilt.android.plugin'
android {
compileSdkVersion Versions.compileSdkVersion
defaultConfig {
minSdkVersion Versions.minSdkVersion
targetSdkVersion Versions.targetSdkVersion
multiDexEnabled true
}
testOptions.unitTests.all {
testLogging {
events "skipped", "failed"
}
}
lintOptions {
checkDependencies true
textReport true
warningsAsErrors true
abortOnError true
textOutput 'stdout'
}
buildFeatures {
viewBinding = true
compose true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.3.2"
}
compileOptions {
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = '11'
}
lint {
disable "DialogFragmentCallbacksDetector"
}
}
dependencies {
coreLibraryDesugaring Dependencies.desugarJdkLibs
implementation Dependencies.kotlinStdlib
implementation Dependencies.coroutines
implementation Dependencies.composeRuntime
implementation Dependencies.hilt
kapt Dependencies.hiltCompiler
testImplementation Dependencies.testLibs
}