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