A number of samples were not using the play services from the repository. In one sample, the incorrect variant of play services was used on the wearable module. Bug: 17196108 Change-Id: I5276747a0c7eaf48c542d2540c36819422839d9b
27 lines
554 B
Groovy
27 lines
554 B
Groovy
apply plugin: 'android'
|
|
|
|
android {
|
|
compileSdkVersion 18
|
|
buildToolsVersion '20'
|
|
|
|
defaultConfig {
|
|
minSdkVersion 18
|
|
targetSdkVersion 19
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
runProguard false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.google.android.gms:play-services:5.0.+'
|
|
compile "com.android.support:support-v4:20.0.+"
|
|
wearApp project(':Wearable')
|
|
}
|