-
Notifications
You must be signed in to change notification settings - Fork 22
/
build.gradle.kts
36 lines (32 loc) · 1.04 KB
/
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
33
34
35
36
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
val kotlinVersion by extra("1.6.10")
val gradleVersion by extra("7.2.2")
val gradlePluginVersion by extra("2.2.1")
val composeVersion by extra("1.2.0-alpha07")
repositories {
google()
mavenCentral()
maven(url = "https://jitpack.io")
mavenLocal()
}
dependencies {
classpath("com.android.tools.build:gradle:$gradleVersion")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
classpath("org.jetbrains.kotlin:kotlin-serialization:$kotlinVersion")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle.kts files
}
}
allprojects {
repositories {
google()
mavenCentral()
maven(url = "https://jitpack.io")
maven(url = "https://api.xposed.info")
mavenLocal()
}
}
tasks.register<Delete>("clean") {
delete(rootProject.buildDir)
}