forked from libre-tube/LibreTube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
36 lines (31 loc) · 958 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
33
34
35
36
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath(libs.gradle)
classpath(libs.kotlin.gradle.plugin)
classpath(libs.kotlin.serialization)
classpath(libs.androidx.navigation.safeargs)
// NOTE: Do not place your application dependencies here, they belong
// in the individual module build.gradle.kts files
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { setUrl("https://jitpack.io") }
}
}
plugins {
alias(libs.plugins.androidTest) apply false
alias(libs.plugins.jetbrainsKotlinAndroid) apply false
alias(libs.plugins.baselineprofile) apply false
alias(libs.plugins.androidApplication) apply false
}
tasks.register<Delete>("clean") {
delete(rootProject.layout.buildDirectory)
}