LibreTube/build.gradle
imashnake0 07a01ffddb Replace classpath with plugins DSL
Replaced the old way of adding plugins to the classpath with plugins DSL: https://docs.gradle.org/current/userguide/plugins.html#sec:plugins_block.
2022-06-20 22:43:52 -04:00

9 lines
201 B
Groovy

plugins {
id 'com.android.application' apply false version '7.2.1'
id 'org.jetbrains.kotlin.android' apply false version '1.7.0'
}
task clean(type: Delete) {
delete rootProject.buildDir
}