mirror of
https://github.com/stantanasi/streamflix.git
synced 2025-08-06 14:20:20 +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 = '1.9.23'
|
|
|
|
repositories {
|
|
google()
|
|
}
|
|
dependencies {
|
|
classpath 'androidx.navigation:navigation-safe-args-gradle-plugin:2.7.7'
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'com.android.application' version '8.5.1' apply false
|
|
id 'com.android.library' version '8.5.1' apply false
|
|
id 'org.jetbrains.kotlin.android' version '1.9.23' apply false
|
|
id 'com.google.devtools.ksp' version '1.9.23-1.0.20' apply false
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
} |