mirror of
https://github.com/googlemaps/android-samples.git
synced 2026-02-01 14:35:06 +00:00
* chore: update WearOS readme * chore: update WearOS AGP version * chore: remove outdated API key instructions * chore: update comments in build.gradle
70 lines
2.1 KiB
Groovy
70 lines
2.1 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'org.jetbrains.kotlin.android'
|
|
id 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin'
|
|
}
|
|
|
|
android {
|
|
namespace 'com.example.app_utils'
|
|
compileSdk 34
|
|
|
|
defaultConfig {
|
|
applicationId "com.example.app_utils"
|
|
minSdk 21
|
|
targetSdk 34
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildFeatures {
|
|
buildConfig = true
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_21
|
|
targetCompatibility JavaVersion.VERSION_21
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '21'
|
|
}
|
|
}
|
|
|
|
// [START maps_android_utils_install_snippet]
|
|
dependencies {
|
|
|
|
// [START_EXCLUDE silent]
|
|
implementation 'androidx.core:core-ktx:1.13.1'
|
|
implementation 'androidx.appcompat:appcompat:1.7.0'
|
|
implementation 'com.google.android.material:material:1.12.0'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
|
|
// [END_EXCLUDE]
|
|
|
|
// Utility Library for Maps SDK for Android
|
|
// You do not need to add a separate dependency for the Maps SDK for Android
|
|
// since this library builds in the compatible version of the Maps SDK.
|
|
implementation 'com.google.maps.android:android-maps-utils:3.8.0'
|
|
}
|
|
// [END maps_android_utils_install_snippet]
|
|
|
|
secrets {
|
|
// To add your Maps API key to this project:
|
|
// 1. If the secrets.properties file does not exist, create it in the same folder as the local.properties file.
|
|
// 2. Add this line, where YOUR_API_KEY is your API key:
|
|
// MAPS_API_KEY=YOUR_API_KEY
|
|
propertiesFileName = "secrets.properties"
|
|
|
|
// A properties file containing default secret values. This file can be
|
|
// checked in version control.
|
|
defaultPropertiesFileName = 'local.defaults.properties'
|
|
}
|