-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
61 lines (55 loc) · 1.85 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.6'
ext {
// Sdk and tools
compileSdkVersion = 33
minSdkVersion = 28
targetSdkVersion = 30
// App dependencies
rxjavaVersion = '3.0.0'
appCompatVersion = '1.1.0'
constraintLayoutVersion = '2.0.0-beta3'
coreTestingVersion = '2.0.0'
espressoVersion = '3.1.1'
fragmentVersion = '1.5.4'
glideVersion = '4.10.0'
gradleVersion = '7.0.2'
hiltVersion = '2.44.2'
// junitVersion = '4.12'
junitVersion = '4.13'
kotlinVersion = '1.4.30'
ktlintVersion = '0.38.1'
ktxVersion = '1.0.2'
lifecycleVersion = '2.4.0'
materialVersion = '1.2.0'
navigationVersion = '2.4.1'
okhttpVersion = '4.10.0'
pagingVersion = '3.0.1'
retrofitVersion = '2.9.0'
roomVersion = '2.3.0'
runnerVersion = '1.0.1'
truthVersion = '0.42'
testExtJunit = '1.1.0'
timberVersion = '5.0.1'
uiAutomatorVersion = '2.2.0'
viewPagerVersion = '1.0.0'
workVersion = '2.4.0'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.44.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}