From 1c57d5e5e291984b6fffd1b59bb61ac18560f714 Mon Sep 17 00:00:00 2001 From: merkost Date: Sat, 1 Jul 2023 11:27:11 +1000 Subject: [PATCH] build.gradle plugins section refactoring --- app/build.gradle | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 71afd20e..5b443ced 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,6 +1,8 @@ -apply plugin: 'com.android.application' -apply plugin: 'kotlin-android' -apply plugin: 'kotlin-android-extensions' +plugins { + id 'com.android.application' + id 'kotlin-android' + id 'kotlin-android-extensions' +} def keystorePropertiesFile = rootProject.file("keystore.properties") def keystoreProperties = new Properties()