-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle.kts
32 lines (27 loc) · 861 Bytes
/
build.gradle.kts
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
val versionName = "1.1.1"
val versionCode = 1110
val kotlinVersion = "1.6.10"
extra.apply {
set("compileSdkVersion", 31)
set("targetSdkVersion", 31)
set("minSdkVersion", 15)
set("buildToolsVersion", "30.0.2")
set("kotlinVersion", kotlinVersion)
set("versionName", versionName)
set("versionCode", versionCode)
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:7.2.0")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}")
classpath("com.deploygate:gradle:2.4.0")
}
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}