blob: c255c193eb0314f5936765594312622c20e1e984 [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éraud67ec13c2015-11-19 11:51:16 -05007 compile 'com.android.support:support-v13:23.1.+'
8 compile 'com.android.support:design:23.1.+'
9 compile 'com.android.support:cardview-v7:23.1.+'
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
Adrien Béraud67ec13c2015-11-19 11:51:16 -050018 buildToolsVersion "23.0.2"
Adrien Béraudb00ed3f2015-06-07 15:36:06 -040019 sourceSets {
20 main {
21 aidl.srcDirs = ['src/main/java']
22 jniLibs.srcDir 'src/main/libs'
23 jni.srcDirs = []
24 }
25
26 // Move the tests to tests/java, tests/res, etc...
27 instrumentTest.setRoot('tests')
28
29 // Move the build types to build-types/<type>
30 // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
31 // This moves them out of them default location under src/<type>/... which would
32 // conflict with src/ being used by the main source set.
33 // Adding new build types or product flavors should be accompanied
34 // by a similar customization.
35 debug.setRoot('build-types/debug')
36 release.setRoot('build-types/release')
37 }
Adrien Béraudb179bab2015-10-08 12:04:22 -040038 compileOptions {
39 sourceCompatibility JavaVersion.VERSION_1_7
40 targetCompatibility JavaVersion.VERSION_1_7
41 }
Adrien Béraudb00ed3f2015-06-07 15:36:06 -040042}