-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
52 lines (41 loc) · 1.39 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
dependencies {
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.44'
def nav_version = "2.5.3"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
}
}
plugins {
id 'com.android.application' version '8.0.1' apply false
id 'com.android.library' version '8.0.1' apply false
id 'org.jetbrains.kotlin.android' version '1.8.20' apply false
}
ext {
// Sdk and tools
// Support library and architecture components support minSdk 14 and above.
minSdkVersion = 24
targetSdkVersion = 33
compileSdkVersion = 33
// App dependencies
androidXVersion = '1.10.1'
appcompatVersion = '1.6.1'
materialVersion = '1.9.0'
junitVersion = '4.13.2'
junitTestVersion = '1.1.5'
espressoTestVersion = '3.5.1'
hiltVersion = '2.44'
androidxFragmentVersion = '1.6.0'
androidxActivityVersion = '1.7.2'
androidxLifecycleExtensionsVersion = '2.2.0'
androidxNavigationVersion = '2.6.0'
coroutineVersion = '1.7.1'
glideVersion = '4.15.1'
lottieVersion = '6.0.0'
roomVersion = '2.5.1'
preferencesDataStoreVersion = '1.1.0-alpha04'
retrofitVersion = '2.9.0'
retrofitLoggingVersion = '4.10.0'
okhttpVersion = '5.0.0-alpha.3'
autoimagesliderVersion = '1.4.0'
}