2015-06-12 12:21:27 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 22
|
|
|
|
buildToolsVersion "22.0.1"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "esrlabs.com.geofence"
|
|
|
|
minSdkVersion 17
|
|
|
|
targetSdkVersion 22
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
2015-06-15 12:43:18 +02:00
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
2015-06-12 12:21:27 +02:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2015-06-15 12:43:18 +02:00
|
|
|
|
|
|
|
testOptions {
|
|
|
|
unitTests.returnDefaultValues = true
|
|
|
|
}
|
2015-06-12 12:21:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
compile 'com.android.support:appcompat-v7:22.1.1'
|
2015-06-15 12:43:18 +02:00
|
|
|
testCompile 'junit:junit:4.12'
|
2015-06-15 14:12:42 +02:00
|
|
|
testCompile('org.robolectric:robolectric:3.0-rc2') {
|
|
|
|
exclude group: 'commons-logging', module: 'commons-logging'
|
|
|
|
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
|
|
|
|
}
|
2015-06-15 12:43:18 +02:00
|
|
|
testCompile 'org.mockito:mockito-core:1.9.5'
|
|
|
|
testCompile 'org.hamcrest:hamcrest-library:1.3'
|
2015-06-15 15:08:20 +02:00
|
|
|
compile project(':headunitinterface')
|
2015-06-12 12:21:27 +02:00
|
|
|
}
|