-
-
Notifications
You must be signed in to change notification settings - Fork 115
/
build.gradle
30 lines (27 loc) · 836 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
30
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.9.10'
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.jaredsburrows:gradle-license-plugin:0.8.90'
}
}
plugins {
id "com.github.ben-manes.versions" version "0.28.0"
id 'com.google.devtools.ksp' version '1.9.10-1.0.13' apply false
id 'com.google.dagger.hilt.android' version '2.48.1' apply false
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}