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.gms:play-services-wearable:11.8.0' 26 compile 'com.android.support:support-v13:27.0.2' 27 wearApp project(':Wearable') 28} 29 30// The sample build uses multiple directories to 31// keep boilerplate and common code separate from 32// the main sample code. 33List<String> dirs = [ 34 'main', // main sample code; look here for the interesting stuff. 35 'common', // components that are reused by multiple samples 36 'template'] // boilerplate code that is generated by the sample template process 37 38android { 39 compileSdkVersion 27 40 41 buildToolsVersion "27.0.2" 42 43 defaultConfig { 44 minSdkVersion 18 45 targetSdkVersion 23 46 } 47 48 compileOptions { 49 sourceCompatibility JavaVersion.VERSION_1_7 50 targetCompatibility JavaVersion.VERSION_1_7 51 } 52 53 sourceSets { 54 main { 55 dirs.each { dir -> 56 java.srcDirs "src/${dir}/java" 57 res.srcDirs "src/${dir}/res" 58 } 59 } 60 androidTest.setRoot('tests') 61 androidTest.java.srcDirs = ['tests/src'] 62 63 } 64 65} 66