39 lines
1016 B
Groovy
39 lines
1016 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 22
|
|
buildToolsVersion "22.0.1"
|
|
|
|
defaultConfig {
|
|
applicationId "uk.org.openseizuredetector"
|
|
minSdkVersion 11
|
|
targetSdkVersion 11
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
|
|
testOptions {
|
|
unitTests.returnDefaultValues = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile files('libs/mpandroidchartlibrary-2-0-7.jar')
|
|
compile files('libs/pebblekit-2.6.0-eclipse.jar')
|
|
|
|
// Unit testing dependencies
|
|
testCompile 'junit:junit:4.12'
|
|
// Set this dependency if you want to use Mockito
|
|
testCompile 'org.mockito:mockito-core:1.10.19'
|
|
// Set this dependency if you want to use Hamcrest matching
|
|
testCompile 'org.hamcrest:hamcrest-library:1.1'
|
|
|
|
compile 'com.android.support:appcompat-v7:22.2.1'
|
|
compile 'com.android.support:support-v4:22.2.1'
|
|
}
|