mirror of
https://github.com/stantanasi/streamflix.git
synced 2025-05-17 11:25:56 +08:00
23 lines
628 B
Groovy
23 lines
628 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext.kotlin_version = '2.1.20'
|
|
|
|
repositories {
|
|
google()
|
|
}
|
|
dependencies {
|
|
classpath 'androidx.navigation:navigation-safe-args-gradle-plugin:2.8.5'
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'com.android.application' version '8.9.2' apply false
|
|
id 'com.android.library' version '8.9.2' apply false
|
|
id 'org.jetbrains.kotlin.android' version '2.1.20' apply false
|
|
id 'com.google.devtools.ksp' version '2.1.20-1.0.32' apply false
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
} |