blob: 3a9410336b2bf42bf5bcfd413ceafd06d0ca528b [file] [log] [blame]
Trevor Johns818bd7c2015-05-20 22:03:03 -07001
Trevor Johns684d2c12014-10-16 02:54:51 -07002buildscript {
3 repositories {
Trevor Johns29e861b2014-12-01 14:56:41 -08004 jcenter()
Trevor Johns684d2c12014-10-16 02:54:51 -07005 }
6
7 dependencies {
Trevor Johns40f8fbe2015-05-08 19:28:40 -07008 classpath 'com.android.tools.build:gradle:1.1.0'
Trevor Johns684d2c12014-10-16 02:54:51 -07009 }
10}
11
12apply plugin: 'com.android.application'
13
Trevor Johns29e861b2014-12-01 14:56:41 -080014repositories {
15 jcenter()
16}
17
Trevor Johns684d2c12014-10-16 02:54:51 -070018dependencies {
Trevor Johnsf4852422014-12-11 14:22:56 -080019 compile "com.android.support:support-v4:21.0.2"
20 compile "com.android.support:support-v13:21.0.2"
21 compile "com.android.support:cardview-v7:21.0.2"
Trevor Johns684d2c12014-10-16 02:54:51 -070022}
23
24// The sample build uses multiple directories to
25// keep boilerplate and common code separate from
26// the main sample code.
27List<String> dirs = [
28 'main', // main sample code; look here for the interesting stuff.
29 'common', // components that are reused by multiple samples
30 'template'] // boilerplate code that is generated by the sample template process
31
32android {
Trevor Johns4de32d42015-04-22 20:19:58 -070033 compileSdkVersion 22
34 buildToolsVersion "22.0.1"
Trevor Johns684d2c12014-10-16 02:54:51 -070035
36 defaultConfig {
37 minSdkVersion 18
Trevor Johns4de32d42015-04-22 20:19:58 -070038 targetSdkVersion 22
Trevor Johns684d2c12014-10-16 02:54:51 -070039 }
40
Trevor Johns40f8fbe2015-05-08 19:28:40 -070041 compileOptions {
42 sourceCompatibility JavaVersion.VERSION_1_7
43 targetCompatibility JavaVersion.VERSION_1_7
44 }
45
Trevor Johns684d2c12014-10-16 02:54:51 -070046 sourceSets {
47 main {
48 dirs.each { dir ->
49 java.srcDirs "src/${dir}/java"
50 res.srcDirs "src/${dir}/res"
51 }
52 }
53 androidTest.setRoot('tests')
54 androidTest.java.srcDirs = ['tests/src']
55
56 }
57
58}
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73