diff --git a/app/build.gradle b/app/build.gradle index 3d95a2b..e973754 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -8,8 +8,8 @@ android { applicationId "org.hitlabnz.sensor_fusion_demo" minSdkVersion 18 targetSdkVersion 24 - versionCode 4 - versionName "1.3" + versionCode 5 + versionName "1.4" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } @@ -30,7 +30,7 @@ dependencies { androidTestCompile 'com.android.support:support-annotations:24.2.1' androidTestCompile 'org.hamcrest:hamcrest-library:1.3' - androidTestCompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.1' + androidTestCompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.2' androidTestCompile ('com.android.support.test.espresso:espresso-core:2.2.2') { exclude group: 'com.android.support', module: 'support-annotations' diff --git a/build.gradle b/build.gradle index 6b1d8d1..012728b 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,6 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. +apply plugin: 'com.github.ben-manes.versions' + buildscript { repositories { jcenter() @@ -6,6 +8,7 @@ buildscript { } dependencies { classpath 'com.android.tools.build:gradle:2.2.0' + classpath 'com.github.ben-manes:gradle-versions-plugin:0.13.0' } }