android-samples/snippets/build.gradle
dependabot[bot] 41588f7b70
chore(deps): bump com.android.application from 8.3.2 to 8.4.0 in /snippets (#1556)
chore(deps): bump com.android.application in /snippets

Bumps com.android.application from 8.3.2 to 8.4.0.

---
updated-dependencies:
- dependency-name: com.android.application
  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>
2024-05-01 11:34:11 +00:00

17 lines
488 B
Groovy

// [START maps_android_secrets_gradle_plugin_project_level_config]
buildscript {
dependencies {
classpath "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1"
}
}
// [END maps_android_secrets_gradle_plugin_project_level_config]
plugins {
id 'com.android.application' version '8.4.0' apply false
id 'org.jetbrains.kotlin.android' version '1.9.23' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}