From e98f61098532a254e650c29fc768ac25372b0379 Mon Sep 17 00:00:00 2001 From: merkost Date: Tue, 18 Jul 2023 12:08:54 +1000 Subject: [PATCH] Small gradle improvement --- app/build.gradle | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index ddec97b4..e88f0c67 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,7 +1,9 @@ -apply plugin: 'com.android.application' -apply plugin: 'kotlin-android' -apply plugin: 'kotlin-android-extensions' -apply plugin: 'kotlin-kapt' +plugins { + id 'com.android.application' + id 'kotlin-android' + id 'kotlin-android-extensions' + id 'kotlin-kapt' +} def keystorePropertiesFile = rootProject.file("keystore.properties") def keystoreProperties = new Properties()