Files
sensor-fusion-demo/app/build.gradle

37 lines
1.1 KiB
Groovy
Raw Normal View History

2016-02-28 18:30:08 +01:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
2016-02-28 18:30:08 +01:00
defaultConfig {
applicationId "org.hitlabnz.sensor_fusion_demo"
minSdkVersion 18
2016-02-28 18:30:08 +01:00
targetSdkVersion 23
versionCode 4
versionName "1.3"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
2016-02-28 18:30:08 +01:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2016-02-28 18:30:08 +01:00
}
}
}
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'
2016-02-28 18:30:08 +01:00
}