-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon-android-library.gradle
78 lines (62 loc) · 1.81 KB
/
common-android-library.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import ru.redmadrobot.movie_app.Dependencies
import ru.redmadrobot.movie_app.TestDependencies
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
apply plugin: "androidx.navigation.safeargs.kotlin"
apply plugin: 'de.mannodermaus.android-junit5'
apply from: rootProject.file('versions.gradle')
android {
compileSdkVersion build_versions.compile_sdk
buildToolsVersion build_versions.build_tools
defaultConfig {
minSdkVersion build_versions.min_sdk
vectorDrawables.useSupportLibrary = true
kapt.arguments {
arg("room.schemaLocation", "$projectDir/schemas".toString())
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "1.8"
}
sourceSets {
androidTest.assets.srcDirs += files("$projectDir/schemas".toString())
it.each {
it.java.srcDirs += "src/$it.name/kotlin"
}
}
viewBinding {
enabled = true
}
testOptions {
unitTests.returnDefaultValues = true
junitPlatform {
filters {
engines {
include 'spek2'
}
}
}
unitTests.all {
testLogging.events = ["passed", "skipped", "failed"]
}
}
packagingOptions {
exclude "META-INF/LICENSE*"
}
}
dependencies {
implementation(
Dependencies.Tools.Timber,
Dependencies.Tools.Glide,
Dependencies.Tools.Groupie,
Dependencies.Tools.Lottie
)
testImplementation(TestDependencies.testImpl)
testRuntimeOnly(TestDependencies.testRuntime)
androidTestImplementation(TestDependencies.androidTestImpl)
}