mirror of
https://github.com/googlemaps/android-samples.git
synced 2025-12-08 18:02:20 +00:00
Bumps [secrets-gradle-plugin](https://github.com/google/secrets-gradle-plugin) from 1.2.0 to 1.3.0. - [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/v1.2.0...v1.3.0) --- updated-dependencies: - dependency-name: com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin 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>
27 lines
644 B
Groovy
27 lines
644 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:4.0.2'
|
|
classpath "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:1.3.0"
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|