From df46ccc6041967744bcb2da4d99c4be4f0263d34 Mon Sep 17 00:00:00 2001 From: Manik Sejwal Date: Mon, 22 Oct 2018 19:48:39 +0530 Subject: [PATCH] updated to implementation compile is no longer supported so replaced it with implementation --- hugo-runtime/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hugo-runtime/build.gradle b/hugo-runtime/build.gradle index b108100..4fce693 100644 --- a/hugo-runtime/build.gradle +++ b/hugo-runtime/build.gradle @@ -6,10 +6,10 @@ apply plugin: 'com.android.library' apply plugin: 'com.github.dcendents.android-maven' dependencies { - compile 'org.aspectj:aspectjrt:1.8.6' - compile project(':hugo-annotations') + implementation 'org.aspectj:aspectjrt:1.8.6' + implementation project(':hugo-annotations') - testCompile 'junit:junit:4.12' + testImplementation 'junit:junit:4.12' } android {