mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-13 13:50:30 +05:30
07a01ffddb
Replaced the old way of adding plugins to the classpath with plugins DSL: https://docs.gradle.org/current/userguide/plugins.html#sec:plugins_block.
9 lines
201 B
Groovy
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
|
|
}
|