This sample demonstrates how to use DataItems to construct linked phone- and wearable-side notifications. Change-Id: I6defa7fad671ba2ec0de25c8913abd66d07846a2
29 lines
662 B
Groovy
29 lines
662 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:5.0.+@aar'
|
|
compile 'com.android.support:support-v13:20.0.+'
|
|
compile 'com.google.android.support:wearable:1.0.+'
|
|
compile project(':Common')
|
|
}
|