commit fd246ea083be6f860cae5bf4046a85ef9f441205
parent ae0fe6d30540bb638bc86c7d6cc46a9297ab22ad
Author: gstraube <gstraube@mailbox.org>
Date: Fri, 15 Dec 2017 17:58:01 +0100
Use new Gradle tasks
Diffstat:
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/app/build.gradle b/app/build.gradle
@@ -25,18 +25,18 @@ android {
}
dependencies {
- androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
+ androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
- androidTestCompile('com.android.support.test:runner:1.0.0', {
+ androidTestImplementation('com.android.support.test:runner:1.0.0', {
exclude group: 'com.android.support', module: 'support-annotations'
})
- androidTestCompile('com.android.support.test:rules:1.0.0', {
+ androidTestImplementation('com.android.support.test:rules:1.0.0', {
exclude group: 'com.android.support', module: 'support-annotations'
})
- compile 'com.android.support:appcompat-v7:26.1.0'
- compile 'com.jaredrummler:material-spinner:1.2.1'
- testCompile 'junit:junit:4.12'
- testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
- testCompile group: 'org.robolectric', name: 'robolectric', version: '3.3.2'
+ implementation 'com.android.support:appcompat-v7:26.1.0'
+ implementation 'com.jaredrummler:material-spinner:1.2.1'
+ testImplementation 'junit:junit:4.12'
+ testImplementation group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
+ testImplementation group: 'org.robolectric', name: 'robolectric', version: '3.3.2'
}