-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
24 lines (22 loc) · 774 Bytes
/
Copy pathbuild.gradle
File metadata and controls
24 lines (22 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
classpath "com.android.tools.build:gradle:8.0.2"
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.7.7")
classpath("com.google.dagger:hilt-android-gradle-plugin:2.48.1")
}
}
plugins {
id 'com.android.application' version '8.1.1' apply false
id 'com.android.library' version '8.1.1' apply false
id 'org.jetbrains.kotlin.android' version '1.6.21' apply false
id 'io.gitlab.arturbosch.detekt' version '1.21.0'
}
task clean(type: Delete) {
delete rootProject.buildDir
}