
fragment: 1.6.0 -> 1.6.1 preferences: 1.2.0 -> 1.2.1 room: 2.6.0-alpha02 -> 2.6.0-alpha03 material: 1.10.0-alpha05 -> 1.10.0-alpha06 media: 1.1.0 -> 1.1.1
24 lines
No EOL
735 B
Groovy
24 lines
No EOL
735 B
Groovy
buildscript {
|
|
ext {
|
|
kotlin_version = '1.9.0'
|
|
navigation_version = "2.7.0"
|
|
hilt_version = '2.47'
|
|
}
|
|
|
|
dependencies {
|
|
// Hilt isn't compatible with the new plugin syntax yet.
|
|
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id "com.android.application" version "8.1.0" apply false
|
|
id "androidx.navigation.safeargs.kotlin" version "$navigation_version" apply false
|
|
id "org.jetbrains.kotlin.android" version "$kotlin_version" apply false
|
|
id "com.google.devtools.ksp" version '1.9.0-1.0.12' apply false
|
|
id "com.diffplug.spotless" version "6.20.0" apply false
|
|
}
|
|
|
|
tasks.register('clean', Delete) {
|
|
delete rootProject.buildDir
|
|
} |