Files
YandView/build.gradle
T
2024-06-29 21:58:26 +08:00

33 lines
920 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.8.10"
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.3.2'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.10'
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.7.7"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
id 'com.google.devtools.ksp' version '1.9.20-1.0.14' apply false
id 'org.jetbrains.kotlin.android' version '1.9.0' apply false
}
allprojects {
repositories {
maven { url "https://www.jitpack.io" }
google()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}