-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathandroid.gradle
49 lines (40 loc) · 1.42 KB
/
android.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
android {
compileSdk AndroidConfig.compileSdk
defaultConfig {
minSdk AndroidConfig.minSdk
targetSdk AndroidConfig.targetSdk
testInstrumentationRunner AndroidConfig.androidJunitRunner
testInstrumentationRunnerArgument AndroidConfig.runnerBuilder, AndroidConfig.androidJunit5Builder
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8
}
buildFeatures {
dataBinding = true
}
testOptions {
unitTests.returnDefaultValues = true
}
}
dependencies {
implementation AndroidXConfig.appcompat
implementation AndroidXConfig.constraintLayout
implementation GoogleConfig.material
implementation AndroidXConfig.coreKtx
implementation AndroidXConfig.activityKtx
implementation AndroidXConfig.fragmentKtx
implementation CoroutineConfig.core
testImplementation TestConfig.junitJupiterApi
testRuntimeOnly TestConfig.junitJupiterEngine
testImplementation TestConfig.assertjCore
testImplementation TestConfig.mockk
androidTestImplementation TestConfig.testRunner
androidTestImplementation TestConfig.junitJupiterApi
androidTestImplementation TestConfig.assertjCore
androidTestImplementation TestConfig.androidTestCore
androidTestRuntimeOnly TestConfig.androidTestRunner
}