-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
26 lines (25 loc) · 850 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
dagger_version = '2.44'
compose_version = '1.2.1'
compose_compiler_version = '1.3.1'
nav_version = '2.5.3'
coil_version = '2.2.2'
gson_version = '2.10.1'
retrofit_version = '2.9.0'
}
dependencies {
classpath "com.vanniktech:gradle-maven-publish-plugin:0.19.0"
}
}
plugins {
id 'com.android.application' version '7.4.1' apply false
id 'com.android.library' version '7.4.1' apply false
id 'org.jetbrains.kotlin.android' version '1.7.0' apply false
id 'org.jetbrains.kotlin.jvm' version '1.7.0' apply false
id 'com.google.dagger.hilt.android' version '2.44' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}