Files
streamflix/build.gradle
2025-04-25 12:31:55 +02:00

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
}