From 51d41c07c78027b37b416562a5ede8118614ebbf Mon Sep 17 00:00:00 2001 From: georgetsiga Date: Fri, 11 Jan 2019 10:14:22 +0200 Subject: [PATCH 1/2] Update from Compile to Implementation Replaced compile with implementation, testCompile with testImplementation so as to remove warnings when running the project. --- app/build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index d8c78cb..7803947 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -20,10 +20,10 @@ android { } dependencies { - compile fileTree(dir: 'libs', include: ['*.jar']) + implementation fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' - compile 'com.android.support:appcompat-v7:23.1.1' - compile 'com.android.support:recyclerview-v7:23.1.1' - compile 'io.reactivex:rxandroid:1.1.0' - compile 'io.reactivex:rxjava:1.1.0' + implementation 'com.android.support:appcompat-v7:23.1.1' + implementation 'com.android.support:recyclerview-v7:23.1.1' + implementation 'io.reactivex:rxandroid:1.1.0' + implementation 'io.reactivex:rxjava:1.1.0' } From 11b34ad723af60b2c2f2666bfab791ea11233ccb Mon Sep 17 00:00:00 2001 From: georgetsiga Date: Fri, 11 Jan 2019 10:17:37 +0200 Subject: [PATCH 2/2] Changed from testCompile to testImplementation Changed from testCompile to testImplementation --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 7803947..2c7d763 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -21,7 +21,7 @@ android { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) - testCompile 'junit:junit:4.12' + testImplementation 'junit:junit:4.12' implementation 'com.android.support:appcompat-v7:23.1.1' implementation 'com.android.support:recyclerview-v7:23.1.1' implementation 'io.reactivex:rxandroid:1.1.0'