-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathbuild.gradle
35 lines (32 loc) · 893 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
31
32
33
34
35
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = '1.9.22'
wear_compose_version = '1.3.1'
room_version = "2.6.1"
compose_bom_version = "2024.06.00"
}
repositories {
google()
mavenCentral()
maven { url 'https://plugins.gradle.org/m2' }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.5.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.jaredsburrows:gradle-license-plugin:0.8.90'
}
}
plugins {
id 'com.google.devtools.ksp' version '1.9.22-1.0.17' apply false
}
allprojects {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
tasks.register('clean') {
delete rootProject.buildDir
}