blob: cf33e4ae2ee347b602f8ddac82f0101f2ff1c291 [file] [log] [blame]
Adrien Béraudb00ed3f2015-06-07 15:36:06 -04001apply plugin: 'com.android.application'
2
Adrien Béraudb00ed3f2015-06-07 15:36:06 -04003dependencies {
Adrien Béraudb179bab2015-10-08 12:04:22 -04004 compile fileTree(include: '*.jar', dir: 'libs')
Adrien Béraudb00ed3f2015-06-07 15:36:06 -04005 compile 'com.j256.ormlite:ormlite-core:4.48'
6 compile 'com.j256.ormlite:ormlite-android:4.48'
Adrien Béraudb179bab2015-10-08 12:04:22 -04007 compile 'com.android.support:support-v13:23.0.+'
8 compile 'com.android.support:design:23.0.+'
Adrien Bérauda416c742015-10-21 17:12:39 -04009 compile 'com.android.support:cardview-v7:23.0.+'
Adrien Béraud6d881d92015-06-17 16:22:23 -040010 compile 'com.jayway.android.robotium:robotium-solo:5.4.1'
Adrien Béraudb00ed3f2015-06-07 15:36:06 -040011 compile 'com.astuetz:pagerslidingtabstrip:1.0.1'
Adrien Béraudb179bab2015-10-08 12:04:22 -040012 compile 'com.googlecode.libphonenumber:libphonenumber:7.0.11'
13 compile 'se.emilsjolander:stickylistheaders:2.7.+'
Adrien Béraudb00ed3f2015-06-07 15:36:06 -040014}
15
16android {
Adrien Béraudb179bab2015-10-08 12:04:22 -040017 compileSdkVersion 23
18 buildToolsVersion "23.0.1"
Adrien Béraudb00ed3f2015-06-07 15:36:06 -040019
20 sourceSets {
21 main {
22 aidl.srcDirs = ['src/main/java']
23 jniLibs.srcDir 'src/main/libs'
24 jni.srcDirs = []
25 }
26
27 // Move the tests to tests/java, tests/res, etc...
28 instrumentTest.setRoot('tests')
29
30 // Move the build types to build-types/<type>
31 // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
32 // This moves them out of them default location under src/<type>/... which would
33 // conflict with src/ being used by the main source set.
34 // Adding new build types or product flavors should be accompanied
35 // by a similar customization.
36 debug.setRoot('build-types/debug')
37 release.setRoot('build-types/release')
38 }
Adrien Béraudb179bab2015-10-08 12:04:22 -040039 compileOptions {
40 sourceCompatibility JavaVersion.VERSION_1_7
41 targetCompatibility JavaVersion.VERSION_1_7
42 }
Adrien Béraudb00ed3f2015-06-07 15:36:06 -040043}