mirror of
https://github.com/googlemaps/android-samples.git
synced 2025-12-08 18:02:20 +00:00
32 lines
893 B
Groovy
32 lines
893 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'project-report'
|
|
|
|
android {
|
|
compileSdkVersion 27
|
|
buildToolsVersion '27.0.2'
|
|
|
|
defaultConfig {
|
|
applicationId "com.example.mapdemo"
|
|
minSdkVersion 15
|
|
targetSdkVersion 27
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
testImplementation 'junit:junit:4.12'
|
|
implementation 'com.android.support:appcompat-v7:27.0.2'
|
|
implementation 'com.google.android.gms:play-services-maps:12.0.1'
|
|
implementation 'com.android.support:support-v4:27.0.2'
|
|
// Needed for the LiteListDemo
|
|
implementation "com.android.support:recyclerview-v7:27.0.2"
|
|
}
|