Increased version-number, updated dependencies and added plug-in to detect newer versions of dependencies with ./gradlew dependencyUpdates

This commit is contained in:
Alexander Pacha
2016-09-19 21:01:08 +02:00
parent 1578862b03
commit 2979c6e78a
2 changed files with 6 additions and 3 deletions

View File

@@ -8,8 +8,8 @@ android {
applicationId "org.hitlabnz.sensor_fusion_demo" applicationId "org.hitlabnz.sensor_fusion_demo"
minSdkVersion 18 minSdkVersion 18
targetSdkVersion 24 targetSdkVersion 24
versionCode 4 versionCode 5
versionName "1.3" versionName "1.4"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
} }
@@ -30,7 +30,7 @@ dependencies {
androidTestCompile 'com.android.support:support-annotations:24.2.1' androidTestCompile 'com.android.support:support-annotations:24.2.1'
androidTestCompile 'org.hamcrest:hamcrest-library:1.3' 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') { androidTestCompile ('com.android.support.test.espresso:espresso-core:2.2.2') {
exclude group: 'com.android.support', module: 'support-annotations' exclude group: 'com.android.support', module: 'support-annotations'

View File

@@ -1,4 +1,6 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules. // Top-level build file where you can add configuration options common to all sub-projects/modules.
apply plugin: 'com.github.ben-manes.versions'
buildscript { buildscript {
repositories { repositories {
jcenter() jcenter()
@@ -6,6 +8,7 @@ buildscript {
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:2.2.0' classpath 'com.android.tools.build:gradle:2.2.0'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.13.0'
} }
} }