mirror of
https://github.com/googlemaps/android-samples.git
synced 2025-12-08 18:02:20 +00:00
Bumps [maps-ktx](https://github.com/googlemaps/android-maps-ktx) from 3.2.1 to 3.3.0. - [Release notes](https://github.com/googlemaps/android-maps-ktx/releases) - [Changelog](https://github.com/googlemaps/android-maps-ktx/blob/main/release.gpg.gpg) - [Commits](https://github.com/googlemaps/android-maps-ktx/compare/v3.2.1...v3.3.0) --- updated-dependencies: - dependency-name: com.google.maps.android:maps-ktx 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>
71 lines
2.2 KiB
Groovy
71 lines
2.2 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'kotlin-android'
|
|
// [START maps_android_secrets_gradle_plugin]
|
|
id 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin'
|
|
// [END maps_android_secrets_gradle_plugin]
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 31
|
|
buildToolsVersion "29.0.3"
|
|
defaultConfig {
|
|
applicationId "com.google.maps.example"
|
|
minSdkVersion 21
|
|
targetSdkVersion 31
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
flavorDimensions "version"
|
|
|
|
productFlavors {
|
|
gms {
|
|
dimension "version"
|
|
applicationIdSuffix ".gms"
|
|
versionNameSuffix "-gms"
|
|
}
|
|
v3 {
|
|
dimension "version"
|
|
applicationIdSuffix ".v3"
|
|
versionNameSuffix "-v3"
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: "libs", include: ["*.jar"])
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
implementation 'androidx.core:core-ktx:1.7.0'
|
|
implementation 'androidx.appcompat:appcompat:1.4.0'
|
|
implementation 'com.google.android.material:material:1.4.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
|
|
implementation 'androidx.navigation:navigation-fragment:2.3.5'
|
|
implementation 'androidx.navigation:navigation-ui:2.3.5'
|
|
implementation 'com.android.volley:volley:1.2.1'
|
|
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.4.0'
|
|
|
|
gmsImplementation 'com.google.maps.android:maps-ktx:3.3.0'
|
|
gmsImplementation 'com.google.android.gms:play-services-maps:18.0.0'
|
|
gmsImplementation 'com.google.maps.android:android-maps-utils:2.3.0'
|
|
v3Implementation 'com.google.android.libraries.maps:maps:3.1.0-beta'
|
|
|
|
testImplementation 'junit:junit:4.13.2'
|
|
}
|
|
|
|
secrets {
|
|
defaultPropertiesFileName = 'local.defaults.properties'
|
|
}
|