LibreTube/build.gradle.kts

37 lines
958 B
Plaintext
Raw Permalink Normal View History

// 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)
2023-02-19 18:42:42 +05:30
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()
2024-08-23 16:01:20 +05:30
maven { setUrl("https://jitpack.io") }
}
}
plugins {
2024-01-01 11:56:58 +05:30
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)
}