forked from prathameshmm02/Calculator-inator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
31 lines (30 loc) · 972 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
appCompatVersion = '1.6.1'
coreVersion = '1.10.0'
constraintLayoutVersion = '2.1.4'
coroutinesVersion = '1.7.0'
kotlin_version = '1.8.21'
lifecycleVersion = '2.6.1'
materialVersion = '1.9.0'
roomVersion = '2.5.1'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.7.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
id "com.github.ben-manes.versions" version "0.46.0"
id 'com.google.devtools.ksp' version '1.8.21-1.0.11' apply false
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}