This repository has been archived by the owner on Jun 9, 2023. It is now read-only.
forked from saket/Dank
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathbuild.gradle
58 lines (52 loc) · 1.45 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
import org.gradle.api.tasks.wrapper.Wrapper.DistributionType
buildscript {
ext.versions = [
minSdk : 23,
compileSdk : 31,
supportLib : '28.0.0',
glide : '4.14.2',
autoValue : '1.5',
autoValueMoshi : '0.4.3',
moshi : '1.14.0',
stetho : '1.6.0',
nytStore : '3.1.1',
okHttp : '4.10.0',
retrofit : '2.9.0',
rxBindings : '2.2.0',
dagger : '2.44.2',
butterKnife : '10.2.3',
commonmark : '0.10.0',
flexmark : '0.64.0',
timber : '5.0.1',
junit : '4.13.2',
deeplinkDispatch: '6.1.0',
androidTest : '1.0.2',
kotlin : '1.7.22',
room : '2.4.3',
jsoup : '1.15.3',
rxjava : '2.2.21',
markwon : '2.0.2',
]
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.1' // See ndkVersion in build.gradle (:app) when updating
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$versions.kotlin"
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
}
tasks.wrapper {
gradleVersion = "7.1.1"
distributionSha256Sum = "bf8b869948901d422e9bb7d1fa61da6a6e19411baa7ad6ee929073df85d6365d"
}
task clean(type: Delete) {
delete rootProject.buildDir
}