legado/build.gradle
dependabot[bot] 24233dfeeb
Bump com.google.gms.google-services from 4.3.10 to 4.3.15
Bumps com.google.gms.google-services from 4.3.10 to 4.3.15.

---
updated-dependencies:
- dependency-name: com.google.gms.google-services
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-04-16 01:18:14 +00:00

26 lines
782 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext{
compile_sdk_version = 33
build_tool_version = '33.0.1'
kotlin_version = '1.8.0'
agp_version = '8.0.0'
exoplayer_version = '2.18.4'
splitties_version = '3.0.0'
room_version = '2.5.0'
}
}
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 "de.undercouch.download" version "5.2.1" apply false
id "com.google.gms.google-services" version "4.3.15" apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}