-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (44 loc) · 1.44 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
androidxAppCompatVersion = '1.4.1'
androidxTestVersion = '1.3.0'
constraintLayoutVersion = '2.0.4'
kotlinVersion = '1.6.10'
materialComponentVersion = '1.5.0'
gradleVersion = '7.1.0'
gradleReleaseVersion = '2.6.0'
androidCompileSdk = 31
androidBuildToolsVersion = "30.0.2"
androidMinSdkVersion = 28
phraseVersion = '1.1.0'
versionCode = 1
versionName = "1.0"
compose_version = '1.1.1'
activityCompose = '1.4.0'
coroutines_version = '1.6.0'
retrofit_version = '2.9.0'
okhttp_version = '4.8.1'
hilt_version = '2.40'
room_version = '2.4.2'
timber_version = '4.7.1'
constraint_layout_compose_version = '1.0.0'
accompanist_versions = '0.23.0'
}
repositories {
google()
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.android.tools.build:gradle:$gradleVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "net.researchgate:gradle-release:$gradleReleaseVersion"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}