35 lines
877 B
Groovy
35 lines
877 B
Groovy
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"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
testOptions {
|
|
unitTests.returnDefaultValues = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.android.support:appcompat-v7:22.1.1'
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
|
|
testCompile 'org.mockito:mockito-core:1.9.5'
|
|
testCompile 'org.hamcrest:hamcrest-library:1.3'
|
|
}
|