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
29 lines
663 B
Groovy
29 lines
663 B
Groovy
apply plugin: 'android'
|
|
|
|
android {
|
|
compileSdkVersion 20
|
|
buildToolsVersion '20'
|
|
defaultConfig {
|
|
minSdkVersion 20
|
|
targetSdkVersion 20
|
|
versionCode 1
|
|
versionName '1.0'
|
|
}
|
|
buildTypes {
|
|
release {
|
|
runProguard false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.google.android.gms:play-services-wearable:+'
|
|
compile 'com.android.support:support-v13:20.0.+'
|
|
compile 'com.google.android.support:wearable:1.0.+'
|
|
compile project(':Common')
|
|
}
|