37 lines
1.1 KiB
Groovy
37 lines
1.1 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.3"
|
|
|
|
defaultConfig {
|
|
applicationId "org.hitlabnz.sensor_fusion_demo"
|
|
minSdkVersion 18
|
|
targetSdkVersion 23
|
|
versionCode 4
|
|
versionName "1.3"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.android.support:support-v4:23.3.0'
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
testCompile 'org.mockito:mockito-core:1.10.19'
|
|
|
|
androidTestCompile 'com.android.support:support-annotations:23.3.0'
|
|
androidTestCompile 'com.android.support.test:runner:0.4.1'
|
|
androidTestCompile 'com.android.support.test:rules:0.4.1'
|
|
androidTestCompile 'org.hamcrest:hamcrest-library:1.3'
|
|
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.1'
|
|
androidTestCompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.1'
|
|
}
|