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