legado/build.gradle
dependabot[bot] 0ae919957b
Bump agp_version from 8.2.0 to 8.2.2
Bumps `agp_version` from 8.2.0 to 8.2.2.

Updates `com.android.application` from 8.2.0 to 8.2.2

Updates `com.android.library` from 8.2.0 to 8.2.2

Updates `com.android.tools.build:gradle` from 8.2.0 to 8.2.2

---
updated-dependencies:
- dependency-name: com.android.application
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: com.android.library
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: com.android.tools.build:gradle
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-02-26 04:31:17 +00:00

28 lines
913 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.22'
ksp_version = "1.0.17"
agp_version = '8.2.2'
media3_version = "1.2.0"
splitties_version = '3.0.0'
room_version = '2.6.1'
}
}
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.4.0" apply false
}
tasks.register('clean', Delete) {
delete rootProject.layout.buildDirectory
}