generated from ctOSKalle/DankChat
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
73 lines (62 loc) · 1.94 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
apkName = "DankChat"
// Plugins
agp_version = '7.2.1'
kotlin_version = '1.7.0'
// Kotlin
coroutines_version = '1.6.3'
serialization_version = '1.3.3'
// AndroidX
activity_version = '1.5.0'
browser_version = '1.4.0'
constraint_version = '2.1.4'
core_version = '1.8.0'
emoji_version = '1.2.0-alpha04'
exif_version = '1.3.3'
fragment_version = '1.5.0'
lifecycle_version = '2.5.0'
media_version = '1.6.0'
nav_version = '2.5.0'
preference_version = '1.2.0'
recyclerview_version = '1.2.1'
viewpager2_version = '1.1.0-beta01'
material_version = '1.7.0-alpha02'
webkit_version = '1.4.0'
room_version = '2.4.2'
// Third-party
coil_version = '2.1.0'
gif_drawable_version = '1.2.24'
okhttp_version = '5.0.0-alpha.7'
hilt_version = '2.42'
ktor_version = '2.0.3'
// Localization
crowdin_version = '1.5.1'
// Debug
chucker_version = '3.5.2'
leakcanary_version = '2.5'
}
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath "com.android.tools.build:gradle:$agp_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}