-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
68 lines (64 loc) · 2.14 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
buildscript {
ext {
androidVersion = 32
minSupportSDKVersion = 26
kotlin_version = "1.6.10"
recyclerview_version = '1.2.1'
android_support_version = '28.0.0-alpha3'
material_version = '1.5.0-alpha02'
hilt_version = '2.38.1'
gradle_version = '7.0.4'
google_services_version = '4.3.13'
realm_version = '6.0.1'
lifecycle_version = '2.5.1'
kotlinx_coroutines_version = '1.6.1'
glide_version = '4.13.0'
navigation_version = '2.3.5'
circle_imageview_version = '3.1.0'
exo_player_version = '2.11.8'
push_down_view_version = '1.1.1'
firebase_bom_version = '29.3.1'
retrofit_version = '2.9.0'
google_ads_view_version = '20.2.0'
blur_view_version = '1.6.6'
flexbox_version = '1.0.0'
shimmer_facebook_version = '0.5.0'
util_code = '1.30.7'
eventbus_version = '3.2.0'
start_up_version = '1.1.0'
work_manager_version = '2.7.0'
ucrop_version = '2.2.6'
exoplayer_version = '2.15.0'
lottie_version = '3.4.0'
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.2'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21'
classpath 'com.google.gms:google-services:4.3.10'
classpath "io.realm:realm-gradle-plugin:$realm_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigation_version"
classpath 'com.google.gms:google-services:4.3.10'
//classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
project.ext {
releaseVersion = '1.0.0'
releaseVersionCode = 1
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}