-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
29 lines (26 loc) · 899 Bytes
/
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
hilt_version = '2.44.2'
navigationVersion = '2.5.3'
lifecycleVersion = '2.5.1'
retrofitVersion = '2.9.0'
}
repositories {
mavenCentral()
}
dependencies {
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion")
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
}
project.extensions.add("versionCode", "30")
project.extensions.add("versionName", "1.1.0develop")
}
plugins {
id 'com.android.application' version '7.4.0' apply false
id 'com.android.library' version '7.4.0' apply false
id 'com.google.dagger.hilt.android' version '2.44.2' apply false
}
tasks.register("clean", Delete.class) {
delete(rootProject.buildDir)
}