15 lines
549 B
Groovy
15 lines
549 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
ext {
|
|
nav_version = "2.6.0"
|
|
}
|
|
}
|
|
plugins {
|
|
id 'com.android.application' version '8.1.0' apply false
|
|
id 'com.android.library' version '8.1.0' apply false
|
|
id 'org.jetbrains.kotlin.android' version '1.9.10' apply false
|
|
id 'com.android.test' version '8.1.0' apply false
|
|
id 'com.google.dagger.hilt.android' version '2.48' apply false
|
|
id 'com.google.devtools.ksp' version '1.9.10-1.0.13' apply false
|
|
}
|