Metro/build.gradle
2023-03-06 21:08:14 +05:30

30 lines
No EOL
863 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
lifecycle_version = '2.5.1'
navigation_version = '2.5.3'
mdc_version = '1.9.0-alpha02'
preference_version = '1.2.0'
appcompat_version = '1.6.1'
core_version = '1.9.0'
}
repositories {
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigation_version"
}
}
plugins {
id "com.github.ben-manes.versions" version "0.42.0"
id 'com.google.devtools.ksp' version '1.8.10-1.0.9' apply false
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}