1
2buildscript {
3    repositories {
4        jcenter()
5        google()
6    }
7
8    dependencies {
9        classpath 'com.android.tools.build:gradle:3.0.1'
10    }
11}
12
13apply plugin: 'com.android.application'
14
15repositories {
16    jcenter()
17    google()
18}
19
20dependencies {
21    compile "com.android.support:support-v4:27.0.2"
22    compile "com.android.support:support-v13:27.0.2"
23    compile "com.android.support:cardview-v7:27.0.2"
24    compile "com.android.support:appcompat-v7:27.0.2"
25    compile 'com.google.android.support:wearable:2.2.0'
26    compile 'com.google.android.gms:play-services-wearable:11.8.0'
27    compile 'com.android.support:support-v13:27.0.2'
28    wearApp project(':Wearable')
29}
30
31// The sample build uses multiple directories to
32// keep boilerplate and common code separate from
33// the main sample code.
34List<String> dirs = [
35    'main',     // main sample code; look here for the interesting stuff.
36    'common',   // components that are reused by multiple samples
37    'template'] // boilerplate code that is generated by the sample template process
38
39android {
40    compileSdkVersion 27
41
42    buildToolsVersion "27.0.2"
43
44    defaultConfig {
45        minSdkVersion 23
46        targetSdkVersion 25
47    }
48
49    compileOptions {
50        sourceCompatibility JavaVersion.VERSION_1_7
51        targetCompatibility JavaVersion.VERSION_1_7
52    }
53
54    sourceSets {
55        main {
56            dirs.each { dir ->
57                java.srcDirs "src/${dir}/java"
58                res.srcDirs "src/${dir}/res"
59            }
60        }
61        androidTest.setRoot('tests')
62        androidTest.java.srcDirs = ['tests/src']
63
64    }
65
66}
67