android-samples/snippets/build.gradle
dependabot[bot] 5782174087
chore(deps): bump secrets-gradle-plugin from 2.0.0 to 2.0.1 in /snippets (#866)
Bumps [secrets-gradle-plugin](https://github.com/google/secrets-gradle-plugin) from 2.0.0 to 2.0.1.
- [Release notes](https://github.com/google/secrets-gradle-plugin/releases)
- [Changelog](https://github.com/google/secrets-gradle-plugin/blob/main/.releaserc)
- [Commits](https://github.com/google/secrets-gradle-plugin/compare/v2.0.0...v2.0.1)

---
updated-dependencies:
- dependency-name: com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin
  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>
2022-03-21 23:57:29 +00:00

33 lines
977 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
// [START maps_android_secrets_gradle_plugin_classpath]
buildscript {
// [START_EXCLUDE silent]
ext.kotlin_version = "1.6.10"
repositories {
google()
mavenCentral()
}
// [END_EXCLUDE]
dependencies {
// [START_EXCLUDE]
classpath "com.android.tools.build:gradle:7.1.2"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
// [END_EXCLUDE]
classpath "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1"
}
}
// [END maps_android_secrets_gradle_plugin_classpath]
allprojects {
repositories {
google()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}