-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
54 lines (51 loc) · 1.57 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.versions = [:]
versions.gradle = '4.2.2'
versions.kotlin = '1.5.10'
versions.coreKtx = '1.6.0'
versions.appCompat = '1.3.0'
versions.material = '1.4.0'
versions.contraintLayout = '2.0.4'
versions.legacySupportV4 = '1.0.0'
versions.junit = '4.13.2'
versions.room = '2.3.0'
versions.retrofit = '2.9.0'
versions.hilt = '2.33-beta'
versions.amplify_core = '1.17.1'
versions.amplify_core_kotlin = '0.1.2'
versions.desugar_jdk = '1.1.5'
versions.fragment_ktx = '1.3.5'
versions.ipfs_kotlin = '0.15'
versions.cloudinary = '1.30.0'
versions.timber = '4.7.1'
versions.glide = '4.12.0'
versions.shimmer = '0.5.0'
versions.spotlight = '2.0.5'
versions.work = '2.5.0'
versions.truth = '1.1.3'
versions.chucker = '3.5.0'
repositories {
google()
mavenCentral()
//jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$versions.gradle"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$versions.kotlin"
classpath "com.google.dagger:hilt-android-gradle-plugin:$versions.hilt"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
//jcenter()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}