From b876e0776b2eb3b057f51623db00254953dc2a05 Mon Sep 17 00:00:00 2001 From: Rafael Ortega <> Date: Tue, 8 Oct 2019 14:38:33 +0200 Subject: [PATCH] change compile for implementation --- dsbridge/build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dsbridge/build.gradle b/dsbridge/build.gradle index bd2ce23..a85f057 100644 --- a/dsbridge/build.gradle +++ b/dsbridge/build.gradle @@ -25,10 +25,10 @@ android { } dependencies { - compile fileTree(dir: 'libs', include: ['*.jar']) - androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { + implementation fileTree(dir: 'libs', include: ['*.jar']) + androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) - compile 'com.android.support:appcompat-v7:23.4.0' - testCompile 'junit:junit:4.12' + implementation 'com.android.support:appcompat-v7:28.0.0' + testImplementation 'junit:junit:4.12' }