android-samples/snippets/build.gradle
dependabot[bot] 0309314f49
chore(deps): bump com.android.application from 8.3.0 to 8.3.1 in /snippets (#1514)
chore(deps): bump com.android.application in /snippets

Bumps com.android.application from 8.3.0 to 8.3.1.

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

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-19 11:08:10 +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.3.1' apply false
id 'org.jetbrains.kotlin.android' version '1.9.23' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}