1 <#-- 2 Copyright 2014 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 --> 16 buildscript { 17 repositories { 18 jcenter() 19 } 20 21 dependencies { 22 classpath 'com.android.tools.build:gradle:2.1.2' 23 } 24 } 25 26 apply plugin: 'com.android.application' 27 28 <#if sample.repository?has_content> 29 repositories { 30 <#list sample.repository as rep> 31 ${rep} 32 </#list> 33 }</#if> 34 35 dependencies { 36 37 <#list sample.dependency_wearable as dep> 38 <#-- Output dependency after checking if it is a play services depdency and 39 needs the latest version number attached. --> 40 <@update_play_services_dependency dep="${dep}" /> 41 </#list> 42 43 <#list sample.provided_dependency_wearable as dep> 44 provided "${dep}" 45 </#list> 46 47 compile ${play_services_wearable_dependency} 48 compile ${android_support_v13_dependency} 49 50 <#if sample.preview_wearable_support_dependency?? && sample.preview_wearable_support_dependency?has_content> 51 compile '${sample.preview_wearable_support_dependency}' 52 <#else> 53 compile ${wearable_support_dependency} 54 </#if> 55 56 } 57 58 // The sample build uses multiple directories to 59 // keep boilerplate and common code separate from 60 // the main sample code. 61 List<String> dirs = [ 62 'main', // main sample code; look here for the interesting stuff. 63 'common', // components that are reused by multiple samples 64 'template'] // boilerplate code that is generated by the sample template process 65 66 android { 67 compileSdkVersion ${compile_sdk} 68 69 buildToolsVersion ${build_tools_version} 70 71 defaultConfig { 72 versionCode 1 73 versionName "1.0" 74 75 <#if sample.minSdkVersionWear?? && sample.minSdkVersionWear?has_content> 76 minSdkVersion ${sample.minSdkVersionWear} 77 <#else> 78 minSdkVersion ${min_sdk} 79 </#if> 80 81 <#if sample.targetSdkVersionWear?? && sample.targetSdkVersionWear?has_content> 82 targetSdkVersion ${sample.targetSdkVersionWear} 83 <#else> 84 targetSdkVersion ${compile_sdk} 85 </#if> 86 } 87 88 compileOptions { 89 sourceCompatibility JavaVersion.VERSION_1_7 90 targetCompatibility JavaVersion.VERSION_1_7 91 } 92 93 sourceSets { 94 main { 95 dirs.each { dir -> 96 <#noparse> 97 java.srcDirs "src/${dir}/java" 98 res.srcDirs "src/${dir}/res" 99 </#noparse> 100 } 101 } 102 androidTest.setRoot('tests') 103 androidTest.java.srcDirs = ['tests/src'] 104 105 <#if sample.defaultConfig?has_content> 106 defaultConfig { 107 ${sample.defaultConfig} 108 } 109 <#else> 110 </#if> 111 } 112 } 113