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