From a43e631de0e79fc8b13f79f4993d876fea85fcb3 Mon Sep 17 00:00:00 2001 From: soloturn Date: Sun, 26 May 2019 11:19:09 +0200 Subject: [PATCH] switching from apply plugin to pluins {} following this migration guide: https://guides.gradle.org/migrating-build-logic-from-groovy-to-kotlin/ --- app/build.gradle | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 521e3d727..6dfabd822 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -22,8 +22,10 @@ buildscript { } } -apply plugin: "com.android.application" -apply plugin: "checkstyle" +plugins { + id("com.android.application") + id("checkstyle") +} repositories { google()