-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbuild.gradle
38 lines (35 loc) · 1.01 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
hiltVersion = '2.51'
kotlinVersion = '1.9.23'
navigationVersion = '2.7.7'
}
repositories {
jcenter()
google()
mavenCentral()
}
dependencies {
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
classpath 'com.android.tools.build:gradle:8.4.0'
classpath "com.google.dagger:hilt-android-gradle-plugin:$hiltVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
plugins {
// https://github.com/google/ksp/releases
id 'com.google.devtools.ksp' version '1.9.23-1.0.20' apply false
}
allprojects {
repositories {
jcenter()
google()
mavenCentral()
maven { url 'https://api.xposed.info/' }
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.layout.buildDirectory
}