Skip to content

Instantly share code, notes, and snippets.

@thorikawa
Created June 29, 2014 00:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thorikawa/2071171e573d096f5ff0 to your computer and use it in GitHub Desktop.
Save thorikawa/2071171e573d096f5ff0 to your computer and use it in GitHub Desktop.
build.gradle for wearable
apply plugin: 'com.android.application'
android {
compileSdkVersion 20
buildToolsVersion "20.0.0"
defaultConfig {
applicationId "com.example.wearapp"
minSdkVersion 20
targetSdkVersion 20
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.android.support:wearable:+'
compile 'com.google.android.gms:play-services-wearable:+'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment