-
Notifications
You must be signed in to change notification settings - Fork 27
/
build.gradle
58 lines (48 loc) · 1.56 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
buildscript {
ext {
// Core
composeVersion = '1.2.1'
coreKtxVersion = '1.9.0'
lifecycleKtxVersion = '2.5.1'
activityComposeVersion = '1.6.0'
androidxLifecycleVersion = '2.5.1'
navigationComposeVersion = '2.5.2'
// Dagger-Hilt
hiltVersion = '2.42'
hiltCompilerVersion = '1.0.0'
// Retrofit
retrofitVersion = '2.9.0'
// OkHttp
okHttpVersion = '5.0.0-alpha.3'
// Moshi
moshiVersion = '1.13.0'
// Coil
coilVersion = '2.2.2'
// Accompanist
accompanistPermissionsVersion = '0.23.1'
accompanistPagerVersion = '0.25.1'
accompanistPagerIndicatorsVersion = '0.25.1'
accompanistSwipeToRefreshVersion = '0.25.1'
accompanistPlaceholderVersion = '0.25.1'
// Google Services
playServicesVersion = '18.1.0'
mapsComposeVersion = '2.7.2'
// Paging 3
pagingVersion = '1.0.0-alpha16'
// Tests
junitVersion = '4.13.2'
junitExtVersion = '1.1.3'
espressoVersion = '3.4.0'
}
dependencies {
classpath "com.google.dagger:hilt-android-gradle-plugin:$hiltVersion"
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.3.0' apply false
id 'com.android.library' version '7.3.0' apply false
id 'org.jetbrains.kotlin.android' version '1.8.21' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}