LibreTube/build.gradle

30 lines
851 B
Groovy
Raw Normal View History

2022-06-25 21:56:09 +05:30
//plugins {
// id 'com.android.application' apply false version '7.2.1'
//id 'org.jetbrains.kotlin.android' apply false version '1.7.0'
//}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2023-06-08 02:34:48 +05:30
ext.kotlin_version = '1.8.22'
2022-06-25 21:56:09 +05:30
repositories {
google()
mavenCentral()
}
dependencies {
2023-07-28 06:01:24 +05:30
classpath libs.gradle
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
2022-06-25 21:56:09 +05:30
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
2023-08-20 06:02:04 +05:30
plugins {
id 'com.google.devtools.ksp' version '1.9.0-1.0.12' apply false
}
2022-06-25 21:56:09 +05:30
task clean(type: Delete) {
delete rootProject.buildDir
2021-12-09 18:01:40 +05:30
}