-
Notifications
You must be signed in to change notification settings - Fork 38
/
build.gradle
33 lines (31 loc) · 858 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
buildscript {
ext {
release = [
versionCode : 4,
versionName : "2.0.0",
appVersionCode: 4,
appVersionName: "2.0.0"
]
setup = [
compileSdk: 33,
minSdk : 14,
targetSdk : 33
]
versions = [
kotlin : "1.7.21",
androidX_core: "1.9.0",
material : "1.7.0"
]
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}")
}
}
plugins {
id("com.android.application") version "7.4.0" apply false
id("com.android.library") version "7.4.0" apply false
id("org.jetbrains.kotlin.android") version "1.7.21" apply false
}
task clean(type: Delete) {
delete(rootProject.buildDir)
}