From b54920cb7f2344096c67d09be5c9b6c1d4b69c07 Mon Sep 17 00:00:00 2001 From: tateisu Date: Tue, 27 Mar 2018 17:10:36 +0900 Subject: [PATCH] change 'compile' to 'implementation' for Android Studio 3.1 --- apng/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apng/build.gradle b/apng/build.gradle index c9b94a15..6b02464d 100644 --- a/apng/build.gradle +++ b/apng/build.gradle @@ -5,7 +5,7 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" - testCompile group: 'junit', name: 'junit', version: '4.12' + testImplementation group: 'junit', name: 'junit', version: '4.12' } sourceCompatibility = "1.7"