-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathbuild.gradle
106 lines (89 loc) · 2.84 KB
/
build.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
import org.jetbrains.kotlin.gradle.tasks.KaptGenerateStubs
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
// Sdk and tools
compileSdkVersion = 34
minSdkVersion = 21
targetSdkVersion = 33
// App dependencies
appCompatVersion = '1.6.1'
constraintLayoutVersion = '2.1.4'
coroutinesVersion = "1.7.1"
fragmentVersion = '1.5.7'
glideVersion = '4.9.0'
gradleVersion = '8.1.0'
kotlinVersion = '1.8.0'
ktlintVersion = '0.30.0'
ktxVersion = '1.10.1'
lifecycleVersion = '2.6.1'
materialVersion = '1.0.0'
navigationVersion = '2.7.1'
recyclerViewVersion = '1.1.0-alpha05'
roomVersion = '2.2.5'
workVersion = '2.7.1'
pagingVersion = '2.1.0'
gsonVersion = '2.8.2'
okhttp = '3.10.0'
retrofit = '2.6.0'
stetho = '1.5.1'
timberVersion = '4.7.1'
daggerVersion = '2.23.2'
supportLibraryVersion = '1.1.0-alpha05'
// Testing dependencies
junitVersion = '4.12'
espressoVersion = '3.1.1'
coreTestingVersion = '2.0.0'
jacocoVersion = '0.8.4'
runnerVersion = '1.0.1'
testExtJunit = '1.1.0'
uiAutomatorVersion = '2.2.0'
mockitoVersion = "2.25.0"
mockitoAllVersion = "1.10.19"
mockitoAndroidVersion = "2.25.0"
mockwebserverVersion = "3.8.1"
testCoreVersion = "1.1.0"
testRunnerVersion = "1.1.1"
testRulesVersion = "1.1.1"
hiltVersion = "2.38.1"
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradleVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlinVersion"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hiltVersion"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
id("com.google.dagger.hilt.android") version "2.47" apply false
}
allprojects {
tasks.withType(KotlinCompile).configureEach {
kotlinOptions {
jvmTarget = "17"
}
}
tasks.withType(KaptGenerateStubs).configureEach {
kotlinOptions.jvmTarget = "17"
}
configurations.all {
resolutionStrategy {
force 'org.xerial:sqlite-jdbc:3.34.0'
}
}
repositories {
google()
mavenCentral()
}
}
tasks.register('clean', Delete) {
delete rootProject.layout.buildDir
}