From 5c9f4a0e3327aae20ea176bfbafdacf88d7521eb Mon Sep 17 00:00:00 2001 From: Andreas Schildbach Date: Tue, 5 Nov 2019 15:33:17 +0100 Subject: [PATCH] build.gradle: Use new plugins DSL. --- oeffi/build.gradle | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/oeffi/build.gradle b/oeffi/build.gradle index eaae013..a6bad55 100644 --- a/oeffi/build.gradle +++ b/oeffi/build.gradle @@ -1,5 +1,7 @@ -apply plugin: 'com.android.application' -apply plugin: 'androidsvgdrawable' +plugins { + id 'com.android.application' + id 'androidsvgdrawable' +} configurations { all*.exclude group: 'org.json', module: 'json'