legado/build.gradle
dependabot[bot] 6510bf4e9a
Bump de.undercouch.download from 5.4.0 to 5.5.0 (#3310)
Bumps [de.undercouch.download](https://github.com/michel-kraemer/gradle-download-task) from 5.4.0 to 5.5.0.
- [Release notes](https://github.com/michel-kraemer/gradle-download-task/releases)
- [Commits](https://github.com/michel-kraemer/gradle-download-task/compare/5.4.0...5.5.0)

---
updated-dependencies:
- dependency-name: de.undercouch.download
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-09-18 20:50:25 +08:00

28 lines
901 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext{
compile_sdk_version = 34
build_tool_version = '34.0.0'
kotlin_version = '1.9.10'
ksp_version = "1.0.13"
agp_version = '8.1.1'
media3_version = "1.1.1"
splitties_version = '3.0.0'
room_version = '2.5.2'
}
}
plugins {
id 'com.android.application' version "$agp_version" apply false
id 'com.android.library' version "$agp_version" apply false
id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false
id 'com.google.devtools.ksp' version "$kotlin_version-$ksp_version" apply false
id "de.undercouch.download" version "5.5.0" apply false
id "com.google.gms.google-services" version "4.3.15" apply false
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}