Auxio/build.gradle
Alexander Capehart 66db61899c
playback: remove custom bitmap loading
Media3 simply will not tolerate me doing this. I am basically stuck
at the mercy of the Android OS now, until I can have my own unified
source of truth with cover loading.
2024-05-17 15:38:12 -06:00

24 lines
No EOL
739 B
Groovy

buildscript {
ext {
kotlin_version = '1.9.23'
navigation_version = "2.7.7"
hilt_version = '2.51.1'
}
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.4.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.23-1.0.20' apply false
id "com.diffplug.spotless" version "6.20.0" apply false
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}