• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1apply plugin: 'android'
2
3android {
4    compileSdkVersion 20
5    buildToolsVersion '20'
6
7    defaultConfig {
8        minSdkVersion 20
9        targetSdkVersion 20
10        versionCode 1
11        versionName "1.0"
12    }
13
14    buildTypes {
15        release {
16            runProguard false
17            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
18        }
19    }
20}
21
22dependencies {
23    compile "com.google.android.support:wearable:1.0.+"
24}
25