You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.2 KiB
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
//plugins {
// id 'com.android.application' version '7.1.2' apply false
// id 'com.android.library' version '7.1.2' apply false
// id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
//}
buildscript {
ext {
activity_version = '1.1.0'
appcompat_version = '1.3.1'
constraintlayout_version = '2.1.1'
core_ktx_version = '1.6.0'
coroutines_version = '1.4.2'
kotlin_version = '1.5.31'
lifecycle_version = '2.3.1'
material_version = '1.4.0'
nav_version = '2.3.5'
room_version = '2.3.0'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}